diff options
Diffstat (limited to 'grapher')
| -rw-r--r-- | grapher/Constants/Constants.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index 446f5fa..6710aa0 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -129,6 +129,18 @@ namespace grapher /// <summary> Style used by System.Double.Parse </summary> public const NumberStyles FloatStyle = NumberStyles.Float | NumberStyles.AllowThousands; + /// <summary> Foreground Color When Streamer Mode Active </summary> + public static readonly System.Drawing.Color fgStreamer = System.Drawing.Color.White; + + /// <summary> Background Color When Streamer Mode Active </summary> + public static readonly System.Drawing.Color bgStreamer = System.Drawing.Color.Green; + + /// <summary> Foreground Color When Streamer Mode Inactive </summary> + public static readonly System.Drawing.Color fgNoStreamer = System.Drawing.Color.Black; + + /// <summary> Background Color When Streamer Mode Inactive </summary> + public static readonly System.Drawing.Color bgNoStreamer = System.Drawing.Color.White; + #endregion Constants #region ReadOnly |