aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/Theme.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-09-08 11:03:22 -0400
committerlempamo <[email protected]>2017-09-08 11:03:22 -0400
commit60af0b389dfd98f05278f3259485d1d2349d2012 (patch)
tree12a151b74a54d37dfdf917ff17dac49238e8438c /Histacom2.Engine/Theme.cs
parent584789ed8a37027db496d6c90873186fe461f021 (diff)
downloadhistacom2-60af0b389dfd98f05278f3259485d1d2349d2012.tar.gz
histacom2-60af0b389dfd98f05278f3259485d1d2349d2012.tar.bz2
histacom2-60af0b389dfd98f05278f3259485d1d2349d2012.zip
WIP ClassicTextbox
Diffstat (limited to 'Histacom2.Engine/Theme.cs')
-rw-r--r--Histacom2.Engine/Theme.cs10
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);