| 1 | <?xml version="1.0" encoding="UTF-8"?>
|
|---|
| 2 | <!--
|
|---|
| 3 |
|
|---|
| 4 | Copyright (C) 2008 Bernd Essl
|
|---|
| 5 | Author: Bernd Essl <bernd_at_b23.at>
|
|---|
| 6 |
|
|---|
| 7 | This library is free software; you can greenistribute it and/or
|
|---|
| 8 | modify it under the terms of the GNU Library General Public
|
|---|
| 9 | License as published by the Free Software Foundation; either
|
|---|
| 10 | version 2 of the License, or (at your option) any later version.
|
|---|
| 11 |
|
|---|
| 12 | This library is distributed in the hope that it will be useful,
|
|---|
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 15 | Library General Public License for more details.
|
|---|
| 16 |
|
|---|
| 17 | You should have received a copy of the GNU Library General Public
|
|---|
| 18 | License along with this library; if not, write to the
|
|---|
| 19 | Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|---|
| 20 | Boston, MA 02111-1307, USA.
|
|---|
| 21 |
|
|---|
| 22 | -->
|
|---|
| 23 | <style-scheme id="django" _name="Django" version="1.0">
|
|---|
| 24 | <author>Bernd Essl</author>
|
|---|
| 25 | <_description>Color scheme in the colors of the Django webframework webpage</_description>
|
|---|
| 26 |
|
|---|
| 27 | <color name="dark-green" value="#092E20"/>
|
|---|
| 28 | <color name="darker-green" value="#082017"/>
|
|---|
| 29 | <color name="light-green" value="#92CC47"/>
|
|---|
| 30 | <color name="green" value="#234F32"/>
|
|---|
| 31 | <color name="white" value="#FFFFFF"/>
|
|---|
| 32 | <color name="black" value="#000000"/>
|
|---|
| 33 | <color name="brown" value="#AB5603"/>
|
|---|
| 34 | <color name="yellow" value="#FDE661"/>
|
|---|
| 35 | <color name="grey" value="#808080"/>
|
|---|
| 36 |
|
|---|
| 37 | <!-- Global Settings -->
|
|---|
| 38 | <style name="text" foreground="white" background="dark-green"/>
|
|---|
| 39 | <style name="selection" foreground="black" background="yellow"/>
|
|---|
| 40 | <style name="cursor" foreground="white"/>
|
|---|
| 41 | <style name="current-line" background="green"/>
|
|---|
| 42 | <style name="line-numbers" foreground="white" background="green"/>
|
|---|
| 43 |
|
|---|
| 44 | <!-- Bracket Matching -->
|
|---|
| 45 | <style name="bracket-match" foreground="black" background="#8E8032" bold="true"/>
|
|---|
| 46 | <style name="bracket-mismatch" foreground="black" background="#8E8032" bold="true"/>
|
|---|
| 47 |
|
|---|
| 48 | <!-- Right Margin -->
|
|---|
| 49 | <style name="right-margin" foreground="white" background="black"/>
|
|---|
| 50 |
|
|---|
| 51 | <!-- Search Matching -->
|
|---|
| 52 | <style name="search-match" foreground="white" background="black"/>
|
|---|
| 53 |
|
|---|
| 54 | <!-- Comments -->
|
|---|
| 55 | <style name="def:comment" foreground="grey" italic="true"/>
|
|---|
| 56 | <style name="def:shebang" foreground="grey" bold="true"/>
|
|---|
| 57 | <style name="def:doc-comment-element" italic="true"/>
|
|---|
| 58 |
|
|---|
| 59 | <!-- Constants -->
|
|---|
| 60 | <style name="def:constant" foreground="yellow" bold="true"/>
|
|---|
| 61 | <style name="def:string" foreground="yellow"/>
|
|---|
| 62 | <style name="def:special-char" foreground="yellow" bold="true"/>
|
|---|
| 63 | <style name="def:special-constant" foreground="brown" bold="true"/>
|
|---|
| 64 | <style name="def:floating-point" foreground="yellow"/>
|
|---|
| 65 |
|
|---|
| 66 | <!-- Identifiers -->
|
|---|
| 67 | <style name="def:identifier" foreground="yellow"/>
|
|---|
| 68 |
|
|---|
| 69 | <!-- Statements -->
|
|---|
| 70 | <style name="def:statement" foreground="light-green" bold="true"/>
|
|---|
| 71 |
|
|---|
| 72 | <!-- Types -->
|
|---|
| 73 | <style name="def:type" foreground="brown" bold="true"/>
|
|---|
| 74 |
|
|---|
| 75 | <!-- Others -->
|
|---|
| 76 | <style name="def:preprocessor" foreground="brown" bold="true" underline="true"/>
|
|---|
| 77 | <style name="def:error" foreground="white" background="black" bold="true"/>
|
|---|
| 78 | <style name="def:note" background="black" foreground="white" bold="true"/>
|
|---|
| 79 | <style name="def:underlined" italic="true" underline="true"/>
|
|---|
| 80 | <style name="draw-spaces" foreground="darker-green"/>
|
|---|
| 81 |
|
|---|
| 82 | </style-scheme>
|
|---|
| 83 |
|
|---|