aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/Theme.cs
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-09-12 19:27:23 -0500
committerFloppyDiskDrive <[email protected]>2017-09-12 19:27:23 -0500
commit20421d5f51523a20db4e10f7c70eefb932552710 (patch)
tree7cd5b04d0724831935def9199b3152b8eca6dc66 /Histacom2.Engine/Theme.cs
parentcb10dfe5c2004580f480f3e84c445fe7877be79b (diff)
parentc11ba68e8f319acc62b72259235a04b12892bffa (diff)
downloadhistacom2-20421d5f51523a20db4e10f7c70eefb932552710.tar.gz
histacom2-20421d5f51523a20db4e10f7c70eefb932552710.tar.bz2
histacom2-20421d5f51523a20db4e10f7c70eefb932552710.zip
Merge remote-tracking branch 'refs/remotes/Histacom2-Devs/master'
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);