123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Copyright (C) 2008 Matthew Swasey <matt.swasey@viget.com>
- 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="railscasts" _name="RailsCasts" version="1.0">
- <author>Matthew Swasey</author>
- <_description>A clone of the RailsCasts TextMate theme by Ryan Bates</_description>
- <!-- Colors -->
- <color name="background" value="#2b2b2b"/>
- <color name="caret" value="#ffffff"/>
- <color name="foreground" value="#e6e1dc"/>
- <color name="highlight" value="#333435"/>
- <color name="comment" value="#bc9458"/>
- <color name="keyword" value="#cc7833"/>
- <color name="function" value="#FFC66D"/>
- <color name="class" value="#FFFFFF"/>
- <color name="number" value="#A5C261"/>
- <color name="variable" value="#D0D0FF"/>
- <color name="constant" value="#6d9cbe"/>
- <color name="constant2" value="#DA4939"/>
- <color name="string" value="#a5c261"/>
-
- <!-- Global Settings -->
- <style name="text" foreground="foreground" background="background"/>
- <style name="cursor" foreground="foreground"/>
- <style name="current-line" background="background"/>
- <style name="line-numbers" foreground="foreground" background="background"/>
-
- <!-- Bracket Matching
- <style name="bracket-match" background="highlight"/>
- <style name="bracket-mismatch" background="highlight" bold="true"/>
- <style name="search-match" foreground="foreground" background="caret"/> -->
- <!-- Comments -->
- <style name="def:comment" foreground="comment" italic="true"/>
- <style name="def:shebang" foreground="comment" italic="true"/>
- <style name="def:doc-comment-element" foreground="comment" bold="true"/>
- <!-- Constants and Variables-->
- <style name="def:constant" foreground="constant"/>
- <style name="def:string" foreground="string"/>
- <style name="def:special-char" foreground="foreground"/>
- <style name="def:special-constant" foreground="foreground" bold="true"/>
- <style name="def:boolean" foreground="constant"/>
- <style name="def:number" foreground="number"/>
- <style name="def:floating-point" foreground="number"/>
- <style name="def:keyword" foreground="keyword" bold="true"/>
- <style name="def:builtin" foreground="function" bold="true"/>
- <style name="def:variable" foreground="variable"/>
-
- <!-- Identifiers -->
- <style name="def:identifier" foreground="variable"/>
- <!-- Statements -->
- <style name="def:statement" foreground="constant2"/>
- <!-- Types -->
- <style name="def:type" foreground="constant2"/>
-
- <!-- Others -->
- <style name="def:error" foreground="highlight" bold="true"/>
- <style name="def:note" foreground="highlight" bold="true"/>
- <style name="def:net-address-in-comment" foreground="variable" italic="false" underline="true"/>
- <style name="def:preprocessor" foreground="highlight"/>
-
- <!-- Unknown? -->
- <style name="def:specials" background="class"/>
- <!-- C Styles -->
- <style name="c:preprocessor" map-to="def:special-char"/>
- <!-- Diff Styles -->
- <style name="diff:ignore" foreground="highlight"/>
- <!-- Ruby Styles -->
- <style name="ruby:module-handler" foreground="class"/>
- <style name="ruby:symbol" foreground="constant"/>
- <style name="ruby:regex" foreground="number"/>
- <!-- SH Styles -->
- <style name="sh:others" map-to="text"/>
-
- <!-- XML Styles -->
- <style name="xml:attribute-name" foreground="keyword"/>
- <style name="xml:element-name" foreground="keyword"/>
- </style-scheme>
|