gedit: django.xml

File django.xml, 3.7 KB (added by b23 <b23dev@…>, 16 years ago)

django.xml scheme file for gedit

Line 
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="light-green" value="#92CC47"/>
29 <color name="green" value="#234F32"/>
30 <color name="white" value="#FFFFFF"/>
31 <color name="black" value="#000000"/>
32 <color name="brown" value="#AB5603"/>
33 <color name="yellow" value="#FDE661"/>
34 <color name="grey" value="#808080"/>
35
36 <!-- Global Settings -->
37 <style name="text" foreground="white" background="dark-green"/>
38 <style name="selection" foreground="black" background="yellow"/>
39 <style name="cursor" foreground="white"/>
40 <style name="current-line" background="green"/>
41 <style name="line-numbers" foreground="white" background="green"/>
42
43 <!-- Bracket Matching -->
44 <style name="bracket-match" foreground="black" background="#FFE761" bold="true"/>
45 <style name="bracket-mismatch" foreground="black" background="#FFE761" bold="true"/>
46
47 <!-- Right Margin -->
48 <style name="right-margin" foreground="white" background="black"/>
49
50 <!-- Search Matching -->
51 <style name="search-match" foreground="white" background="black"/>
52
53 <!-- Comments -->
54 <style name="def:comment" foreground="grey" italic="true"/>
55 <style name="def:shebang" foreground="grey" bold="true"/>
56 <style name="def:doc-comment-element" italic="true"/>
57
58 <!-- Constants -->
59 <style name="def:constant" foreground="yellow" bold="true"/>
60 <style name="def:string" foreground="yellow"/>
61 <style name="def:special-char" foreground="yellow" bold="true"/>
62 <style name="def:special-constant" foreground="brown" bold="true"/>
63 <style name="def:floating-point" foreground="yellow"/>
64
65 <!-- Identifiers -->
66 <style name="def:identifier" foreground="yellow"/>
67
68 <!-- Statements -->
69 <style name="def:statement" foreground="light-green" bold="true"/>
70
71 <!-- Types -->
72 <style name="def:type" foreground="brown" bold="true"/>
73
74 <!-- Others -->
75 <style name="def:preprocessor" foreground="brown" bold="true" underline="true"/>
76 <style name="def:error" foreground="white" background="black" bold="true"/>
77 <style name="def:note" background="black" foreground="white" bold="true"/>
78 <style name="def:underlined" italic="true" underline="true"/>
79
80</style-scheme>
81
Back to Top