public
Description: Color themes for Gnome's default editor Gedit
Homepage:
Clone URL: git://github.com/mig/gedit-themes.git
gedit-themes / idle.xml
100644 106 lines (82 sloc) 3.864 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="UTF-8"?>
<!--
 
Copyright (C) 2006-2007 Will Farrington <wcfarrington@gmail.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="idle" _name="IDLE" version="1.0">
  <author>Will Farrington</author>
  <_description>Color scheme used in the IDLE Python IDE</_description>
 
<!-- Colors -->
 
  <color name="white" value="#ffffff"/>
  <color name="black" value="#000000"/>
  <color name="black_grey" value="#222222"/>
  <color name="dark_grey" value="#919191"/>
  <color name="light_grey" value="#dedede"/>
  <color name="steelblue3" value="#4f94cd"/>
  <color name="maroon" value="#800000"/>
  <color name="purple" value="#a535ae"/>
  <color name="orange" value="#ff5600"/>
  <color name="green" value="#00a33f"/>
  <color name="red" value="#e80023"/>
 
<!-- Global Settings -->
 
  <style name="text" foreground="black" background="white"/>
  <style name="cursor" foreground="black"/>
  <style name="current-line" background="light_grey"/>
  <style name="line-numbers" foreground="black_grey" background="white"/>
  
<!-- Bracket Matching -->
  <style name="bracket-match" background="steelblue3"/>
  <style name="bracket-mismatch" background="maroon" bold="true"/>
  <style name="search-match" foreground="white" background="steelblue3"/>
 
<!-- Comments -->
  <style name="def:comment" foreground="dark_grey"/>
  <style name="def:shebang" foreground="dark_grey"/>
  <style name="def:doc-comment-element" foreground="dark_grey" bold="true"/>
 
<!-- Constants and Variables-->
  <style name="def:constant" foreground="black"/>
  <style name="def:string" foreground="green"/>
  <style name="def:special-char" foreground="maroon"/>
  <style name="def:special-constant" foreground="purple" bold="true"/>
  <style name="def:boolean" foreground="purple"/>
  <style name="def:number" foreground="black"/>
  <style name="def:floating-point" foreground="black"/>
  <style name="def:keyword" foreground="orange"/>
  <style name="def:builtin" foreground="orange" bold="true"/>
  <style name="def:variable" foreground="black"/>
  
<!-- Identifiers -->
  <style name="def:identifier" foreground="black"/>
 
<!-- Statements -->
  <style name="def:statement" foreground="orange"/>
 
<!-- Types -->
  <style name="def:type" foreground="purple"/>
  
<!-- Others -->
  <style name="def:error" foreground="white" background="maroon" bold="true"/>
  <style name="def:note" foreground="red" bold="true"/>
  <style name="def:net-address-in-comment" foreground="steelblue3" italic="false" underline="true"/>
  <style name="def:preprocessor" color="maroon"/>
    
<!-- Unknown? -->
  <style name="def:specials" background="orange"/>
 
<!-- C Styles -->
  <style name="c:preprocessor" map-to="def:special-char"/>
 
<!-- Diff Styles -->
  <style name="diff:ignore" foreground="dark_grey"/>
 
<!-- Ruby Styles -->
  <style name="ruby:module-handler" foreground="purple"/>
  <style name="ruby:symbol" foreground="black"/>
  <style name="ruby:regex" foreground="green"/>
 
<!-- SH Styles -->
  <style name="sh:others" map-to="text"/>
  
<!-- XML Styles -->
  <style name="xml:attribute-name" foreground="purple"/>
  <style name="xml:element-name" foreground="maroon"/>
 
</style-scheme>