diff options
| author | lempamo <[email protected]> | 2017-09-05 20:05:28 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-09-05 20:05:28 -0400 |
| commit | 859e2483cbfd124d3dde85f1654df9aaa17ca605 (patch) | |
| tree | a5a3864b5e43d9b1f70e83bd90218b5cb71745b2 /Histacom2.Engine/Theme.cs | |
| parent | 1a970e69dada088c5f5ea82dd5683da9ae306ebe (diff) | |
| download | histacom2-859e2483cbfd124d3dde85f1654df9aaa17ca605.tar.gz histacom2-859e2483cbfd124d3dde85f1654df9aaa17ca605.tar.bz2 histacom2-859e2483cbfd124d3dde85f1654df9aaa17ca605.zip | |
buttons and window colors
Diffstat (limited to 'Histacom2.Engine/Theme.cs')
| -rw-r--r-- | Histacom2.Engine/Theme.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Histacom2.Engine/Theme.cs b/Histacom2.Engine/Theme.cs index 579f42e..8aa9dcf 100644 --- a/Histacom2.Engine/Theme.cs +++ b/Histacom2.Engine/Theme.cs @@ -22,6 +22,8 @@ namespace Histacom2.Engine public Color threeDObjectsColor { get; set; } public Color threeDObjectsTextColor { get; set; } + public Font buttonFont { get; set; } + public Color activeTitleBarColor { get; set; } public Color activeTitleTextColor { get; set; } public Color inactiveTitleBarColor { get; set; } @@ -48,6 +50,8 @@ namespace Histacom2.Engine threeDObjectsColor = Color.Silver; threeDObjectsTextColor = Color.Black; + buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular); + activeTitleBarColor = Color.Navy; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.Gray; @@ -74,6 +78,8 @@ namespace Histacom2.Engine threeDObjectsColor = Color.Silver; threeDObjectsTextColor = Color.Black; + buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular); + activeTitleBarColor = Color.Navy; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.Gray; @@ -97,6 +103,11 @@ namespace Histacom2.Engine progErrorSound = Properties.Resources.Win95PlusDangerousCreaturesProgError; questionSound = Properties.Resources.Win95PlusDangerousCreaturesQuestion; + threeDObjectsColor = Color.FromArgb(112, 112, 112); + threeDObjectsTextColor = Color.Black; + + buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Bold); + activeTitleBarColor = Color.Teal; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.FromArgb(72, 72, 72); |
