Advertisement
Guest User

Untitled

a guest
Nov 16th, 2012
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <!-- Resource Dictionary for colors
  4.  
  5. Do not modify above this line, period.-->
  6.  
  7. <!-- Foreground Color is used as the primary color for text. -->
  8. <Color x:Key="ForegroundColor">#FFFFFF</Color>
  9.  
  10. <!-- Highlight color is used to draw attention to controls, such as when a control is focused. -->
  11. <Color x:Key="HighlightColor">#BBBBBB</Color>
  12.  
  13. <!-- Background is used as the basis for every UI element. -->
  14. <Color x:Key="BackgroundColor">#444444</Color>
  15.  
  16. <!-- Depressed color is used primarily used for borders and UI controls which cannot be interacted with. -->
  17. <Color x:Key="DepressedColor">#222222</Color>
  18.  
  19. <!-- Bright background is used for some odds and ends, most notably the 'expand' bars on either side of the screen. -->
  20. <Color x:Key="BrightBackgroundColor">#3A3A3A</Color>
  21.  
  22.  
  23. <!-- Do not modify below this line unless you know what you are doing. -->
  24.  
  25. <SolidColorBrush x:Key="ForegroundBrush" Color="{StaticResource ForegroundColor}" />
  26. <SolidColorBrush x:Key="HighlightBrush" Color="{StaticResource HighlightColor}" />
  27. <SolidColorBrush x:Key="BackgroundBrush" Color="{StaticResource BackgroundColor}" />
  28. <SolidColorBrush x:Key="DepressedBrush" Color="{StaticResource DepressedColor}" />
  29. <SolidColorBrush x:Key="BrightBackgroundBrush" Color="{StaticResource BrightBackgroundColor}" />
  30. </ResourceDictionary>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement