Advertisement
AndreyKlipikov

Metro UI Colors

Sep 3rd, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.34 KB | None | 0 0
  1. .lightgreen {
  2.     background: #99b433;
  3. }
  4.  
  5. .lightgreen:hover {
  6.     background: #7c9229;
  7. }
  8.  
  9. .green {
  10.     background: #00a300;
  11. }
  12.  
  13. .green:hover {
  14.     background: #007c00;
  15. }
  16.  
  17. .magenta {
  18.     background: #ff0097;
  19. }
  20.  
  21. .magenta:hover {
  22.     background: #bb006f;
  23. }
  24.  
  25. .purple {
  26.     background: #7e3878;
  27. }
  28.  
  29. .purple:hover {
  30.     background: #5e2a5a;
  31. }
  32.  
  33. .darkpurple {
  34.     background: #603cba;
  35. }
  36.  
  37. .darkpurple:hover {
  38.     background: #4b308f;
  39. }
  40.  
  41. .darken {
  42.     background: #1d1d1d;
  43. }
  44.  
  45. .darken:hover {
  46.     background: #000000;
  47. }
  48.  
  49. .blue {
  50.     background: #2d89ef;
  51. }
  52.  
  53. .blue:hover {
  54.     background: #236ec0;
  55. }
  56.  
  57. .darkblue {
  58.     background: #2b5797;
  59. }
  60.  
  61. .darkblue:hover {
  62.     background: #214476;
  63. }
  64.  
  65. .orange {
  66.     background: #e3a21a;
  67. }
  68.  
  69. .orange:hover {
  70.     background: #bf8814;
  71. }
  72.  
  73. .darkorange {
  74.     background: #da532c;
  75. }
  76.  
  77. .darkorange:hover {
  78.     background: #af4222;
  79. }
  80.  
  81. .teal {
  82.     background: #00aba9;
  83. }
  84.  
  85. .teal:hover {
  86.     background: #008583;
  87. }
  88.  
  89. .lightpurple {
  90.     background: #9f00a7;
  91. }
  92.  
  93. .lightpurple:hover {
  94.     background: #7d0083;
  95. }
  96.  
  97. .darkgreen {
  98.     background: #1e7145;
  99. }
  100.  
  101. .darkgreen:hover {
  102.     background: #154f30;
  103. }
  104.  
  105. .red {
  106.     background: #ee1111;
  107. }
  108.  
  109. .red:hover {
  110.     background: #ba0e0e;
  111. }
  112.  
  113. .darkred {
  114.     background: #b91d47;
  115. }
  116.  
  117. .darkred:hover {
  118.     background: #97183a;
  119. }
  120.  
  121. .skyblue {
  122.     background: #094ab2;
  123. }
  124.  
  125. .skyblue:hover {
  126.     background: #083e93;
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement