Advertisement
obernardovieira

(gedit theme [Linux]) solarized_dark.xml

Jun 24th, 2014
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.31 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <style-scheme id="solarized_dark" _name="Solarized Dark" version="1.0">
  3.  
  4.   <author></author>
  5.   <_description>Dark color scheme based on the Solarized color palette</_description>
  6.  
  7.   <!-- Solarized Palette -->
  8.   <color name="base03"   value="#002b36"/>
  9.   <color name="base02"   value="#073642"/>
  10.   <color name="base01"   value="#586e75"/>
  11.   <color name="base00"   value="#657b83"/>
  12.   <color name="base0"    value="#839496"/>
  13.   <color name="base1"    value="#93a1a1"/>
  14.   <color name="base2"    value="#eee8d5"/>
  15.   <color name="base3"    value="#fdf6e3"/>
  16.   <color name="yellow"   value="#b58900"/>
  17.   <color name="orange"   value="#cb4b16"/>
  18.   <color name="red"      value="#dc322f"/>
  19.   <color name="magenta"  value="#d33682"/>
  20.   <color name="violet"   value="#6c71c4"/>
  21.   <color name="blue"     value="#268bd2"/>
  22.   <color name="cyan"     value="#2aa198"/>
  23.   <color name="green"    value="#859900"/>
  24.  
  25.   <!-- Global Settings -->
  26.   <style name="text"                        foreground="base0" background="base03"/>
  27.   <style name="selection"                   foreground="base03" background="base0"/>
  28.   <style name="cursor"                      foreground="base0"/>
  29.   <style name="current-line"                background="base02"/>
  30.   <style name="line-numbers"                foreground="base01" background="base02"/>
  31.   <style name="draw-spaces"                 foreground="base01"/>
  32.  
  33.   <!-- Bracket Matching -->
  34.   <style name="bracket-match"               foreground="red" background="base01" bold="true"/>
  35.   <style name="bracket-mismatch"            foreground="red" background="base01" underline="true"/>
  36.  
  37.   <!-- Right Margin -->
  38.   <style name="right-margin"                background="base01"/>
  39.  
  40.   <!-- Search Matching -->
  41.   <style name="search-match"                foreground="base03" background="yellow"/>
  42.  
  43.   <!-- Comments -->
  44.   <style name="def:comment"                 foreground="base01" italic="true"/>
  45.   <style name="def:shebang"                 foreground="base01" italic="true" bold="true"/>
  46.  
  47.   <!-- Constants -->
  48.   <style name="def:constant"                foreground="cyan"/>
  49.   <style name="def:string"                  foreground="cyan"/>
  50.   <style name="def:special-char"            foreground="red"/>
  51.   <style name="def:special-constant"        foreground="blue"/>
  52.  
  53.   <!-- Identifiers -->
  54.   <style name="def:identifier"              foreground="blue"/>
  55.   <style name="def:builtin"                 foreground="blue"/>
  56.  
  57.   <!-- Statements -->
  58.   <style name="def:statement"               foreground="green"/>
  59.  
  60.   <!-- Types -->
  61.   <style name="def:type"                    foreground="yellow"/>
  62.  
  63.   <!-- Others -->
  64.   <style name="def:preprocessor"            foreground="orange"/>
  65.   <style name="def:specials"                foreground="red"/>
  66.   <style name="def:error"                   foreground="red" bold="true"/>
  67.   <style name="def:note"                    foreground="magenta" bold="true"/>
  68.   <style name="def:underlined"              foreground="violet"/>
  69.  
  70.   <!-- Language specific -->
  71.   <style name="diff:added-line"             foreground="base03" background="green"/>
  72.   <style name="diff:removed-line"           foreground="base03" background="red"/>
  73.   <style name="diff:changed-line"           foreground="base03" background="yellow"/>
  74.  
  75. </style-scheme>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement