aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/Theme.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-09-04 20:14:19 -0400
committerlempamo <[email protected]>2017-09-04 20:14:19 -0400
commit1a970e69dada088c5f5ea82dd5683da9ae306ebe (patch)
tree1f77a784221a7565843624f321995ab8856e4a3a /Histacom2.Engine/Theme.cs
parent69d4465542fb00108576219d9c1da026f2e864b1 (diff)
downloadhistacom2-1a970e69dada088c5f5ea82dd5683da9ae306ebe.tar.gz
histacom2-1a970e69dada088c5f5ea82dd5683da9ae306ebe.tar.bz2
histacom2-1a970e69dada088c5f5ea82dd5683da9ae306ebe.zip
new classic buttons!
Diffstat (limited to 'Histacom2.Engine/Theme.cs')
-rw-r--r--Histacom2.Engine/Theme.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Histacom2.Engine/Theme.cs b/Histacom2.Engine/Theme.cs
index 6c1efef..579f42e 100644
--- a/Histacom2.Engine/Theme.cs
+++ b/Histacom2.Engine/Theme.cs
@@ -19,6 +19,9 @@ namespace Histacom2.Engine
public Stream progErrorSound { get; set; }
public Stream questionSound { get; set; }
+ public Color threeDObjectsColor { get; set; }
+ public Color threeDObjectsTextColor { get; set; }
+
public Color activeTitleBarColor { get; set; }
public Color activeTitleTextColor { get; set; }
public Color inactiveTitleBarColor { get; set; }
@@ -42,6 +45,9 @@ namespace Histacom2.Engine
progErrorSound = Properties.Resources.CHORD;
questionSound = Properties.Resources.CHORD;
+ threeDObjectsColor = Color.Silver;
+ threeDObjectsTextColor = Color.Black;
+
activeTitleBarColor = Color.Navy;
activeTitleTextColor = Color.White;
inactiveTitleBarColor = Color.Gray;
@@ -65,6 +71,14 @@ namespace Histacom2.Engine
progErrorSound = Properties.Resources.CHORD;
questionSound = Properties.Resources.CHORD;
+ threeDObjectsColor = Color.Silver;
+ threeDObjectsTextColor = Color.Black;
+
+ activeTitleBarColor = Color.Navy;
+ activeTitleTextColor = Color.White;
+ inactiveTitleBarColor = Color.Gray;
+ inactiveTitleTextColor = Color.Silver;
+
defaultWallpaper = null;
themeName = "default98";
}