Here's a "dark" (dark background, light foreground) color scheme I'm working on for the J GTK front-end for those of us who prefer our displays this way. Look here for a much longer list of colors.

Instructions for implementing a customized color scheme are here.

<?xml version="1.0" encoding="UTF-8"?>
<style-scheme id="termDarkBackground" _name="term (syntax highlights)" version="1.0">

  <!-- Palette -->
  <color name="blue"             value="#0000FF"/>
  <color name="light-blue"       value="#4444FF"/>
  <color name="papaya"           value="#FFEFD5"/>
  <color name="pink"             value="#FFC0CB"/>
  <color name="high"             value="#E5E5E5"/>
  <color name="bordeaux"         value="#A52A2A"/>
  <color name="cyan"             value="#008A8C"/>
  <color name="cornsilk"         value="#fff8dc"/>
  <color name="gray"             value="#888888"/>
  <color name="green"            value="#009900"/>
  <color name="green-blue"       value="#009966"/>
  <color name="light-green"      value="#DDFCDE"/>
  <color name="light-yellow"     value="#FCFCDD"/>
  <color name="light-gray"       value="#F5F5F5"/>
  <color name="navy"             value="#000080"/>
  <color name="dark-orange"      value="#DD9900"/>
  <color name="darker-red"       value="#DD4444"/>
  <color name="purple"           value="#A020F0"/>
  <color name="violet"           value="#6A5ACD"/>
  <color name="dark-blue"        value="#0057AE"/>
  <color name="dark-red"         value="#800000"/>
  <color name="dark-green"       value="#008000"/>
  <color name="brown"            value="#B07E00"/>

  <style name="text"              foreground="light-yellow" background="navy"/>
  <style name="selection"         foreground="light-gray" background="dark-red"/>
  <style name="current-line"      background="blue"/>

  <!-- Bracket Matching -->
  <style name="bracket-match"     bold="true"/>
  <style name="bracket-mismatch"  background="#red" bold="true"/>

  <!-- Search Matching -->
  <style name="search-match"      background="#yellow"/>

  <!-- Comments -->
  <style name="def:comment"       foreground="gray" italic="true" bold="false"/>

  <!-- Constants -->
  <style name="def:string"        foreground="light-yellow"/>

  <!-- Others -->
  <style name="def:note"          foreground="#BF0303" background="#F7E7E7" bold="true" italic="false"/>
  <style name="def:error"         foreground="pink" underline="true"/>
  <style name="def:underlined"    underline="true"/>

  <!-- J Language specific styles -->
  <style name="j:adverb"      foreground="#yellow"/>
  <style name="j:comment"     use-style="def:comment"/>
  <style name="j:conjunction" foreground="#orange"/>
  <style name="j:control"     foreground="light-gray"/>
  <style name="j:error"       foreground="pink"/>
  <style name="j:exparg"      foreground="light-green" italic="true" />
  <style name="j:global"      foreground="pink"/>
  <style name="j:local"       foreground="violet"/>
  <style name="j:noun"        foreground="cornsilk" bold="true"/>
  <style name="j:noundef"     foreground="cyan"/>
  <style name="j:number"      foreground="papaya"/>
  <style name="j:parens"      foreground="#white"/>
  <style name="j:primitive"   foreground="cyan"/>
  <style name="j:string"      use-style="def:string"/>
  <style name="j:verb"        foreground="light-green"/>

</style-scheme>

DevonMcCormick/GTK/DarkTermColorScheme0 (last edited 2011-02-25 21:27:23 by DevonMcCormick)