Advertisement
TealDeer

slimCat Dark/Red Theme - Colors.xaml

Nov 14th, 2012
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.78 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">#ccc</Color>
  9.    
  10.     <!-- Highlight color is used to draw attention to controls, such as when a control is focused. -->
  11.     <Color x:Key="HighlightColor">#990000</Color>
  12.  
  13.     <!-- Background is used as the basis for every UI element. -->
  14.     <Color x:Key="BackgroundColor">#000</Color>
  15.  
  16.     <!-- Depressed color is used primarily used for borders and UI controls which cannot be interacted with. -->
  17.     <Color x:Key="DepressedColor">#666</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">#440000</Color>
  21.    
  22.     <!-- Light background is used for some odds and ends, most notably the chat input. -->
  23.     <Color x:Key="LightBackgroundColor">#222</Color>
  24.    
  25.    
  26.     <!-- Do not modify below this line unless you know what you are doing. -->
  27.    
  28.     <SolidColorBrush x:Key="ForegroundBrush"  Color="{StaticResource ForegroundColor}" />
  29.     <SolidColorBrush x:Key="HighlightBrush" Color="{StaticResource HighlightColor}" />
  30.     <SolidColorBrush x:Key="BackgroundBrush" Color="{StaticResource BackgroundColor}" />
  31.     <SolidColorBrush x:Key="DepressedBrush" Color="{StaticResource DepressedColor}" />
  32.     <SolidColorBrush x:Key="BrightBackgroundBrush" Color="{StaticResource BrightBackgroundColor}" />
  33.     <SolidColorBrush x:Key="LightBackgroundBrush" Color="{StaticResource LightBackgroundColor}" />
  34. </ResourceDictionary>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement