12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Copyright (C) 2006-2007
- Author: Mickael Rouvier <rouvier.mickael@free.fr>
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
- You should have received a copy of the GNU Library General Public
- License along with this library; if not, write to the
- Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA.
- -->
- <style-scheme id="textmate" _name="Textmate (mac classic)" version="1.0">
- <author>Mickael Rouvier</author>
- <_description>A blue theme based on textmate</_description>
- <!-- The scheme tries to look like the default GVim scheme,
- since it is also what the hardwired GtkSourceView 1 color
- scheme did -->
- <!-- Palette -->
- <color name="comment" value="#0066ff"/>
- <color name="built-in" value="#3155ff" />
- <color name="variable" value="#318495" />
- <color name="keyword" value="#3e3eff"/>
- <color name="library_object" value="#6d79de" />
- <color name="number" value="#0000cd" />
- <color name="string" value="#036a07" />
- <color name="search" value="#b7dcff" />
- <color name="defined_constant" value="#c5060b" />
-
- <!-- Bracket Matching -->
- <style name="bracket-match" foreground="#white" background="#grey" bold="true"/>
- <style name="bracket-mismatch" foreground="#white" background="#red" bold="true"/>
- <!-- Search Matching -->
- <style name="search-match" background="search" />
-
- <!-- Comments -->
- <style name="def:comment" foreground="comment" italic="true"/>
- <!-- Keyword -->
- <style name="def:statement" foreground="keyword" bold="true"/>
- <style name="def:preprocessor" foreground="keyword" bold="true"/>
- <style name="def:keyword" foreground="keyword" bold="true"/>
- <!-- Number -->
- <style name="def:floating-point" foreground="number" />
- <style name="def:decimal" foreground="number" />
- <style name="def:base-n-integer" foreground="number" />
- <style name="def:base-n-integer" foreground="number" />
- <!-- User-defined constant -->
- <style name="ruby:symbol" foreground="defined_constant" bold="true" />
- <!-- Built-in Constant -->
- <style name="def:constant" foreground="built-in" bold="true" />
- <style name="def:boolean" foreground="built-in" bold="true" />
- <style name="def:special-constant" foreground="built-in" bold="true" />
- <!-- Variable -->
- <style name="def:identifier" foreground="variable"/>
- <!-- String -->
- <style name="def:string" foreground="string" />
-
- <!-- Library Object -->
- <style name="def:type" foreground="library_object" bold="true"/>
-
-
- </style-scheme>
|