Mercurial > silverbladetech
comparison MetroWpf/MetroWpf.Xaml/Styles/Colors.cs @ 15:060f02cd4591
Initial commit, pre airport work
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Mon, 12 Mar 2012 23:05:21 +0800 |
parents | |
children | a8b50a087544 |
comparison
equal
deleted
inserted
replaced
14:741981715d94 | 15:060f02cd4591 |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Windows.Media; | |
6 | |
7 namespace MetroWpf.Xaml.Styles | |
8 { | |
9 public static class AccentColors | |
10 { | |
11 public static readonly Color Black = Color.FromRgb(0, 0, 0); | |
12 public static readonly Color Blue = Color.FromArgb(0xFF, 0x1B, 0xA1, 0xE2); | |
13 public static readonly Color Brown = Color.FromArgb(0xFF, 0xA0, 0x50, 0x00); | |
14 public static readonly Color Green = Color.FromArgb(0xFF, 0x33, 0x99, 0x33); | |
15 public static readonly Color Lime = Color.FromArgb(0xFF, 0x8C, 0xBF, 0x26); | |
16 public static readonly Color Magenta = Color.FromArgb(0xFF, 0xFF, 0x00, 0x97); | |
17 public static readonly Color Orange = Color.FromArgb(0xFF, 0xF0, 0x96, 0x09); | |
18 public static readonly Color Pink = Color.FromArgb(0xFF, 0xE6, 0x71, 0xB8); | |
19 public static readonly Color Purple = Color.FromArgb(0xFF, 0xA2, 0x00, 0xFF); | |
20 public static readonly Color Red = Color.FromArgb(0xFF, 0xE5, 0x14, 0x00); | |
21 public static readonly Color Viridian = Color.FromArgb(0xFF, 0x00, 0xAB, 0xA9); | |
22 public static readonly Color White = Color.FromRgb(240, 240, 240); | |
23 public static readonly Color Yellow = Color.FromRgb(255, 247, 137); | |
24 } | |
25 | |
26 public static class DarkColors | |
27 { | |
28 public static readonly Color Transparent = Color.FromArgb(0x00, 0x11, 0x11, 0x011); | |
29 public static readonly Color Semitransparent = Color.FromArgb(0xAA, 0x11, 0x11, 0x11); | |
30 public static readonly Color Background = Color.FromArgb(0xFF, 0x11, 0x11, 0x11); | |
31 public static readonly Color Foreground = Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF); | |
32 public static readonly Color Contrast = Color.FromArgb(0xFF, 0x11, 0x11, 0x11); | |
33 public static readonly Color Highlight = Color.FromArgb(0xFF, 0x33, 0x33, 0x33); | |
34 public static readonly Color MiddleLight = Color.FromArgb(0xFF, 0x99, 0x99, 0x99); | |
35 public static readonly Color Lowlight = Color.FromArgb(0xFF, 0xCC, 0xCC, 0xCC); | |
36 public static readonly Color Disabled = Color.FromArgb(0xFF, 0x6C, 0x69, 0x66); | |
37 } | |
38 | |
39 public static class LightColors | |
40 { | |
41 public static readonly Color Transparent = Color.FromArgb(0x00, 0xFF, 0xFF, 0xFF); | |
42 public static readonly Color Semitransparent = Color.FromArgb(0xAA, 0xFF, 0xFF, 0xFF); | |
43 public static readonly Color Background = Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF); | |
44 public static readonly Color Foreground = Color.FromArgb(0xFF, 0x00, 0x00, 0x00); | |
45 public static readonly Color Contrast = Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF); | |
46 public static readonly Color Highlight = Color.FromArgb(0xFF, 0xE2, 0xE2, 0xE2); | |
47 public static readonly Color MiddleLight = Color.FromArgb(0xFF, 0x77, 0x77, 0x77); | |
48 public static readonly Color Lowlight = Color.FromArgb(0xFF, 0x4D, 0x4D, 0x4D); | |
49 public static readonly Color Disabled = Color.FromArgb(0xFF, 0xB8, 0xB5, 0xB2); | |
50 } | |
51 } |