diff options
Diffstat (limited to 'Histacom2.Engine/Theme.cs')
| -rw-r--r-- | Histacom2.Engine/Theme.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Histacom2.Engine/Theme.cs b/Histacom2.Engine/Theme.cs index 5b5ae50..8385062 100644 --- a/Histacom2.Engine/Theme.cs +++ b/Histacom2.Engine/Theme.cs @@ -24,6 +24,8 @@ namespace Histacom2.Engine public Font buttonFont { get; set; } + public Color windowColor { get; set; } + public Color activeTitleBarColor { get; set; } public Color activeTitleTextColor { get; set; } public Color inactiveTitleBarColor { get; set; } @@ -52,6 +54,8 @@ namespace Histacom2.Engine buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular); + windowColor = Color.White; + activeTitleBarColor = Color.Navy; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.Gray; @@ -80,6 +84,8 @@ namespace Histacom2.Engine buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular); + windowColor = Color.White; + activeTitleBarColor = Color.Navy; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.Gray; @@ -108,6 +114,8 @@ namespace Histacom2.Engine buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Bold); + windowColor = Color.FromArgb(184, 184, 184); + activeTitleBarColor = Color.Teal; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.FromArgb(72, 72, 72); @@ -132,6 +140,8 @@ namespace Histacom2.Engine buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Bold); + windowColor = Color.White; + activeTitleBarColor = Color.FromArgb(224, 0, 0); activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.FromArgb(96, 168, 128); |
