bjeanes-ultraviolet 0.10.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (234) hide show
  1. data/History.txt +29 -0
  2. data/Manifest.txt +233 -0
  3. data/README.txt +52 -0
  4. data/Rakefile +51 -0
  5. data/bin/theme2latexrender +122 -0
  6. data/bin/theme2xhtmlrender +156 -0
  7. data/bin/uv +140 -0
  8. data/lib/uv.rb +100 -0
  9. data/lib/uv/render_processor.rb +131 -0
  10. data/lib/uv/utility.rb +67 -0
  11. data/render/latex/active4d.render +132 -0
  12. data/render/latex/all_hallows_eve.render +96 -0
  13. data/render/latex/amy.render +171 -0
  14. data/render/latex/blackboard.render +111 -0
  15. data/render/latex/brilliance_black.render +552 -0
  16. data/render/latex/brilliance_dull.render +561 -0
  17. data/render/latex/cobalt.render +162 -0
  18. data/render/latex/dawn.render +126 -0
  19. data/render/latex/eiffel.render +132 -0
  20. data/render/latex/espresso_libre.render +123 -0
  21. data/render/latex/idle.render +93 -0
  22. data/render/latex/iplastic.render +99 -0
  23. data/render/latex/lazy.render +96 -0
  24. data/render/latex/mac_classic.render +135 -0
  25. data/render/latex/magicwb_amiga.render +117 -0
  26. data/render/latex/pastels_on_dark.render +204 -0
  27. data/render/latex/slush_poppies.render +123 -0
  28. data/render/latex/spacecadet.render +81 -0
  29. data/render/latex/sunburst.render +186 -0
  30. data/render/latex/twilight.render +153 -0
  31. data/render/latex/zenburnesque.render +126 -0
  32. data/render/old/txt2tags.render +131 -0
  33. data/render/xhtml/active4d.render +140 -0
  34. data/render/xhtml/all_hallows_eve.render +104 -0
  35. data/render/xhtml/amy.render +179 -0
  36. data/render/xhtml/blackboard.render +119 -0
  37. data/render/xhtml/brilliance_black.render +560 -0
  38. data/render/xhtml/brilliance_dull.render +569 -0
  39. data/render/xhtml/cobalt.render +170 -0
  40. data/render/xhtml/dawn.render +134 -0
  41. data/render/xhtml/eiffel.render +140 -0
  42. data/render/xhtml/espresso_libre.render +131 -0
  43. data/render/xhtml/files/css/active4d.css +114 -0
  44. data/render/xhtml/files/css/all_hallows_eve.css +72 -0
  45. data/render/xhtml/files/css/amy.css +147 -0
  46. data/render/xhtml/files/css/blackboard.css +88 -0
  47. data/render/xhtml/files/css/brilliance_black.css +605 -0
  48. data/render/xhtml/files/css/brilliance_dull.css +599 -0
  49. data/render/xhtml/files/css/cobalt.css +149 -0
  50. data/render/xhtml/files/css/dawn.css +121 -0
  51. data/render/xhtml/files/css/eiffel.css +121 -0
  52. data/render/xhtml/files/css/espresso_libre.css +109 -0
  53. data/render/xhtml/files/css/idle.css +62 -0
  54. data/render/xhtml/files/css/iplastic.css +80 -0
  55. data/render/xhtml/files/css/lazy.css +73 -0
  56. data/render/xhtml/files/css/mac_classic.css +123 -0
  57. data/render/xhtml/files/css/magicwb_amiga.css +104 -0
  58. data/render/xhtml/files/css/pastels_on_dark.css +188 -0
  59. data/render/xhtml/files/css/slush_poppies.css +85 -0
  60. data/render/xhtml/files/css/spacecadet.css +51 -0
  61. data/render/xhtml/files/css/sunburst.css +180 -0
  62. data/render/xhtml/files/css/twilight.css +137 -0
  63. data/render/xhtml/files/css/zenburnesque.css +91 -0
  64. data/render/xhtml/idle.render +101 -0
  65. data/render/xhtml/iplastic.render +107 -0
  66. data/render/xhtml/lazy.render +104 -0
  67. data/render/xhtml/mac_classic.render +143 -0
  68. data/render/xhtml/magicwb_amiga.render +125 -0
  69. data/render/xhtml/pastels_on_dark.render +212 -0
  70. data/render/xhtml/slush_poppies.render +131 -0
  71. data/render/xhtml/spacecadet.render +89 -0
  72. data/render/xhtml/sunburst.render +194 -0
  73. data/render/xhtml/twilight.render +161 -0
  74. data/render/xhtml/zenburnesque.render +134 -0
  75. data/syntax/actionscript.syntax +97 -0
  76. data/syntax/active4d.syntax +276 -0
  77. data/syntax/active4d_html.syntax +311 -0
  78. data/syntax/active4d_ini.syntax +50 -0
  79. data/syntax/active4d_library.syntax +21 -0
  80. data/syntax/ada.syntax +33 -0
  81. data/syntax/antlr.syntax +151 -0
  82. data/syntax/apache.syntax +191 -0
  83. data/syntax/applescript.syntax +384 -0
  84. data/syntax/asp.syntax +70 -0
  85. data/syntax/asp_vb.net.syntax +129 -0
  86. data/syntax/bibtex.syntax +151 -0
  87. data/syntax/blog_html.syntax +41 -0
  88. data/syntax/blog_markdown.syntax +42 -0
  89. data/syntax/blog_text.syntax +27 -0
  90. data/syntax/blog_textile.syntax +27 -0
  91. data/syntax/build.syntax +53 -0
  92. data/syntax/bulletin_board.syntax +287 -0
  93. data/syntax/c++.syntax +109 -0
  94. data/syntax/c.syntax +326 -0
  95. data/syntax/cake.syntax +55 -0
  96. data/syntax/camlp4.syntax +36 -0
  97. data/syntax/cm.syntax +32 -0
  98. data/syntax/coldfusion.syntax +119 -0
  99. data/syntax/context_free.syntax +176 -0
  100. data/syntax/cs.syntax +59 -0
  101. data/syntax/css.syntax +195 -0
  102. data/syntax/css_experimental.syntax +1925 -0
  103. data/syntax/csv.syntax +68 -0
  104. data/syntax/d.syntax +142 -0
  105. data/syntax/diff.syntax +81 -0
  106. data/syntax/dokuwiki.syntax +204 -0
  107. data/syntax/dot.syntax +47 -0
  108. data/syntax/doxygen.syntax +43 -0
  109. data/syntax/dylan.syntax +62 -0
  110. data/syntax/eiffel.syntax +78 -0
  111. data/syntax/erlang.syntax +922 -0
  112. data/syntax/f-script.syntax +80 -0
  113. data/syntax/fortran.syntax +141 -0
  114. data/syntax/fxscript.syntax +142 -0
  115. data/syntax/greasemonkey.syntax +34 -0
  116. data/syntax/gri.syntax +83 -0
  117. data/syntax/groovy.syntax +191 -0
  118. data/syntax/gtd.syntax +22 -0
  119. data/syntax/gtdalt.syntax +143 -0
  120. data/syntax/haml.syntax +88 -0
  121. data/syntax/haskell.syntax +88 -0
  122. data/syntax/html-asp.syntax +27 -0
  123. data/syntax/html.syntax +362 -0
  124. data/syntax/html_django.syntax +36 -0
  125. data/syntax/html_for_asp.net.syntax +424 -0
  126. data/syntax/html_mason.syntax +119 -0
  127. data/syntax/html_rails.syntax +40 -0
  128. data/syntax/html_tcl.syntax +26 -0
  129. data/syntax/icalendar.syntax +32 -0
  130. data/syntax/inform.syntax +48 -0
  131. data/syntax/ini.syntax +55 -0
  132. data/syntax/installer_distribution_script.syntax +77 -0
  133. data/syntax/io.syntax +81 -0
  134. data/syntax/java.syntax +211 -0
  135. data/syntax/javaproperties.syntax +20 -0
  136. data/syntax/javascript.syntax +256 -0
  137. data/syntax/javascript_+_prototype.syntax +72 -0
  138. data/syntax/javascript_+_prototype_bracketed.syntax +140 -0
  139. data/syntax/jquery_javascript.syntax +114 -0
  140. data/syntax/json.syntax +136 -0
  141. data/syntax/languagedefinition.syntax +708 -0
  142. data/syntax/latex.syntax +566 -0
  143. data/syntax/latex_beamer.syntax +41 -0
  144. data/syntax/latex_log.syntax +50 -0
  145. data/syntax/latex_memoir.syntax +64 -0
  146. data/syntax/lexflex.syntax +219 -0
  147. data/syntax/lighttpd.syntax +54 -0
  148. data/syntax/lilypond.syntax +492 -0
  149. data/syntax/lisp.syntax +61 -0
  150. data/syntax/literate_haskell.syntax +24 -0
  151. data/syntax/logo.syntax +29 -0
  152. data/syntax/logtalk.syntax +152 -0
  153. data/syntax/lua.syntax +86 -0
  154. data/syntax/m.syntax +142 -0
  155. data/syntax/macports_portfile.syntax +163 -0
  156. data/syntax/mail.syntax +118 -0
  157. data/syntax/makefile.syntax +36 -0
  158. data/syntax/man.syntax +17 -0
  159. data/syntax/markdown.syntax +543 -0
  160. data/syntax/mediawiki.syntax +567 -0
  161. data/syntax/mel.syntax +92 -0
  162. data/syntax/mips.syntax +66 -0
  163. data/syntax/mod_perl.syntax +50 -0
  164. data/syntax/modula-3.syntax +47 -0
  165. data/syntax/moinmoin.syntax +189 -0
  166. data/syntax/mootools.syntax +572 -0
  167. data/syntax/movable_type.syntax +162 -0
  168. data/syntax/multimarkdown.syntax +39 -0
  169. data/syntax/objective-c++.syntax +18 -0
  170. data/syntax/objective-c.syntax +233 -0
  171. data/syntax/ocaml.syntax +764 -0
  172. data/syntax/ocamllex.syntax +167 -0
  173. data/syntax/ocamlyacc.syntax +184 -0
  174. data/syntax/opengl.syntax +14 -0
  175. data/syntax/pascal.syntax +77 -0
  176. data/syntax/perl.syntax +1115 -0
  177. data/syntax/php.syntax +1253 -0
  178. data/syntax/plain_text.syntax +32 -0
  179. data/syntax/pmwiki.syntax +113 -0
  180. data/syntax/postscript.syntax +114 -0
  181. data/syntax/processing.syntax +106 -0
  182. data/syntax/prolog.syntax +40 -0
  183. data/syntax/property_list.syntax +635 -0
  184. data/syntax/python.syntax +868 -0
  185. data/syntax/python_django.syntax +21 -0
  186. data/syntax/qmake_project.syntax +114 -0
  187. data/syntax/qt_c++.syntax +26 -0
  188. data/syntax/quake3_config.syntax +32 -0
  189. data/syntax/r.syntax +81 -0
  190. data/syntax/r_console.syntax +16 -0
  191. data/syntax/ragel.syntax +201 -0
  192. data/syntax/rd_r_documentation.syntax +91 -0
  193. data/syntax/regexp.syntax +50 -0
  194. data/syntax/regular_expressions_oniguruma.syntax +107 -0
  195. data/syntax/regular_expressions_python.syntax +109 -0
  196. data/syntax/release_notes.syntax +46 -0
  197. data/syntax/remind.syntax +253 -0
  198. data/syntax/restructuredtext.syntax +250 -0
  199. data/syntax/rez.syntax +80 -0
  200. data/syntax/ruby.syntax +1035 -0
  201. data/syntax/ruby_experimental.syntax +145 -0
  202. data/syntax/ruby_on_rails.syntax +88 -0
  203. data/syntax/s5.syntax +69 -0
  204. data/syntax/scheme.syntax +347 -0
  205. data/syntax/scilab.syntax +41 -0
  206. data/syntax/setext.syntax +147 -0
  207. data/syntax/shell-unix-generic.syntax +384 -0
  208. data/syntax/slate.syntax +149 -0
  209. data/syntax/smarty.syntax +63 -0
  210. data/syntax/sql.syntax +237 -0
  211. data/syntax/sql_rails.syntax +18 -0
  212. data/syntax/ssh-config.syntax +33 -0
  213. data/syntax/standard_ml.syntax +121 -0
  214. data/syntax/strings_file.syntax +39 -0
  215. data/syntax/subversion_commit_message.syntax +36 -0
  216. data/syntax/sweave.syntax +84 -0
  217. data/syntax/swig.syntax +57 -0
  218. data/syntax/tcl.syntax +152 -0
  219. data/syntax/template_toolkit.syntax +121 -0
  220. data/syntax/tex.syntax +86 -0
  221. data/syntax/tex_math.syntax +49 -0
  222. data/syntax/textile.syntax +215 -0
  223. data/syntax/tsv.syntax +50 -0
  224. data/syntax/twiki.syntax +241 -0
  225. data/syntax/txt2tags.syntax +79 -0
  226. data/syntax/vectorscript.syntax +57 -0
  227. data/syntax/xhtml_1.0.syntax +4027 -0
  228. data/syntax/xml.syntax +180 -0
  229. data/syntax/xml_strict.syntax +92 -0
  230. data/syntax/xsl.syntax +60 -0
  231. data/syntax/yaml.syntax +160 -0
  232. data/syntax/yui_javascript.syntax +176 -0
  233. data/test/test_uv.rb +0 -0
  234. metadata +309 -0
@@ -0,0 +1,85 @@
1
+ pre.slush_poppies .Directives {
2
+ font-weight: bold;
3
+ }
4
+ pre.slush_poppies .TypeName {
5
+ color: #800080;
6
+ }
7
+ pre.slush_poppies .InheritedClass {
8
+ }
9
+ pre.slush_poppies .OcamlInfixFPOperators {
10
+ text-decoration: underline;
11
+ }
12
+ pre.slush_poppies .Number {
13
+ color: #0080A0;
14
+ }
15
+ pre.slush_poppies .LibraryVariable {
16
+ }
17
+ pre.slush_poppies .Storage {
18
+ color: #008080;
19
+ }
20
+ pre.slush_poppies .line-numbers {
21
+ background-color: #B0B0FF;
22
+ color: #000000;
23
+ }
24
+ pre.slush_poppies .OcamlPrefixFPOperators {
25
+ text-decoration: underline;
26
+ }
27
+ pre.slush_poppies .OcamlFloatingPointConstants {
28
+ text-decoration: underline;
29
+ }
30
+ pre.slush_poppies .LineNumberDirectives {
31
+ }
32
+ pre.slush_poppies .TagName {
33
+ }
34
+ pre.slush_poppies .StorageTypes {
35
+ color: #A08000;
36
+ }
37
+ pre.slush_poppies .Operators {
38
+ color: #2060A0;
39
+ }
40
+ pre.slush_poppies .LibraryConstant {
41
+ }
42
+ pre.slush_poppies .VariantTypes {
43
+ color: #C08060;
44
+ }
45
+ pre.slush_poppies .FunctionArgument {
46
+ }
47
+ pre.slush_poppies .BuiltInConstant {
48
+ }
49
+ pre.slush_poppies .ClassTypeName {
50
+ color: #8000C0;
51
+ }
52
+ pre.slush_poppies .ModuleKeyword {
53
+ color: #0080FF;
54
+ }
55
+ pre.slush_poppies .Invalid {
56
+ }
57
+ pre.slush_poppies .LibraryClassType {
58
+ }
59
+ pre.slush_poppies .LibraryFunction {
60
+ }
61
+ pre.slush_poppies .TagAttribute {
62
+ }
63
+ pre.slush_poppies .Keyword {
64
+ color: #2060A0;
65
+ }
66
+ pre.slush_poppies .UserDefinedConstant {
67
+ }
68
+ pre.slush_poppies .CharacterConstants {
69
+ color: #800000;
70
+ }
71
+ pre.slush_poppies .String {
72
+ color: #C03030;
73
+ }
74
+ pre.slush_poppies {
75
+ background-color: #F1F1F1;
76
+ color: #000000;
77
+ }
78
+ pre.slush_poppies .FunctionName {
79
+ color: #800000;
80
+ }
81
+ pre.slush_poppies .Variable {
82
+ }
83
+ pre.slush_poppies .Comment {
84
+ color: #406040;
85
+ }
@@ -0,0 +1,51 @@
1
+ pre.spacecadet .Constant {
2
+ color: #BF9960;
3
+ }
4
+ pre.spacecadet .Support {
5
+ color: #8A4B66;
6
+ }
7
+ pre.spacecadet .InheritedClass {
8
+ font-style: italic;
9
+ }
10
+ pre.spacecadet .LibraryVariable {
11
+ }
12
+ pre.spacecadet .Storage {
13
+ color: #9EBF60;
14
+ }
15
+ pre.spacecadet .line-numbers {
16
+ background-color: #40002F;
17
+ color: #FFFFFF;
18
+ }
19
+ pre.spacecadet {
20
+ background-color: #0D0D0D;
21
+ color: #DDE6CF;
22
+ }
23
+ pre.spacecadet .TagName {
24
+ }
25
+ pre.spacecadet .Exception {
26
+ color: #893062;
27
+ }
28
+ pre.spacecadet .LibraryConstant {
29
+ }
30
+ pre.spacecadet .Invalid {
31
+ background-color: #5F0047;
32
+ }
33
+ pre.spacecadet .LibraryClassType {
34
+ }
35
+ pre.spacecadet .TagAttribute {
36
+ }
37
+ pre.spacecadet .Keyword {
38
+ color: #728059;
39
+ }
40
+ pre.spacecadet .String {
41
+ color: #805978;
42
+ }
43
+ pre.spacecadet .Entity {
44
+ color: #6078BF;
45
+ }
46
+ pre.spacecadet .Variable {
47
+ color: #596380;
48
+ }
49
+ pre.spacecadet .Comment {
50
+ color: #473C45;
51
+ }
@@ -0,0 +1,180 @@
1
+ pre.sunburst .DiffInserted {
2
+ background-color: #253B22;
3
+ color: #F8F8F8;
4
+ }
5
+ pre.sunburst .DiffHeader {
6
+ background-color: #0E2231;
7
+ color: #F8F8F8;
8
+ font-style: italic;
9
+ }
10
+ pre.sunburst .CssPropertyValue {
11
+ color: #F9EE98;
12
+ }
13
+ pre.sunburst .CCCPreprocessorDirective {
14
+ color: #AFC4DB;
15
+ }
16
+ pre.sunburst .Constant {
17
+ color: #3387CC;
18
+ }
19
+ pre.sunburst .DiffChanged {
20
+ background-color: #4A410D;
21
+ color: #F8F8F8;
22
+ }
23
+ pre.sunburst .Support {
24
+ color: #9B859D;
25
+ }
26
+ pre.sunburst .MarkupList {
27
+ color: #E1D4B9;
28
+ }
29
+ pre.sunburst .CssConstructorArgument {
30
+ color: #8F9D6A;
31
+ }
32
+ pre.sunburst .Storage {
33
+ color: #99CF50;
34
+ }
35
+ pre.sunburst .line-numbers {
36
+ background-color: #DDF0FF;
37
+ color: #000000;
38
+ }
39
+ pre.sunburst .CssClass {
40
+ color: #9B703F;
41
+ }
42
+ pre.sunburst .StringConstant {
43
+ color: #DDF2A4;
44
+ }
45
+ pre.sunburst .MarkupSeparator {
46
+ background-color: #242424;
47
+ color: #60A633;
48
+ }
49
+ pre.sunburst .MarkupUnderline {
50
+ text-decoration: underline;
51
+ color: #E18964;
52
+ }
53
+ pre.sunburst .CssAtRule {
54
+ color: #8693A5;
55
+ }
56
+ pre.sunburst .MetaTagInline {
57
+ color: #E0C589;
58
+ }
59
+ pre.sunburst .JEntityNameType {
60
+ text-decoration: underline;
61
+ }
62
+ pre.sunburst .LogEntryError {
63
+ background-color: #751012;
64
+ }
65
+ pre.sunburst .MarkupHeading {
66
+ background-color: #632D04;
67
+ color: #FEDCC5;
68
+ }
69
+ pre.sunburst .CssTagName {
70
+ color: #CDA869;
71
+ }
72
+ pre.sunburst .SupportConstant {
73
+ color: #CF6A4C;
74
+ }
75
+ pre.sunburst .MarkupQuote {
76
+ background-color: #ECD091;
77
+ color: #E1D4B9;
78
+ font-style: italic;
79
+ }
80
+ pre.sunburst .DiffDeleted {
81
+ background-color: #420E09;
82
+ color: #F8F8F8;
83
+ }
84
+ pre.sunburst .CCCPreprocessorLine {
85
+ color: #8996A8;
86
+ }
87
+ pre.sunburst .StringRegexpSpecial {
88
+ color: #CF7D34;
89
+ }
90
+ pre.sunburst .EmbeddedSourceBright {
91
+ background-color: #ABADB4;
92
+ }
93
+ pre.sunburst .InvalidIllegal {
94
+ background-color: #150B15;
95
+ color: #FD5FF1;
96
+ }
97
+ pre.sunburst .MarkupRaw {
98
+ background-color: #ABADB4;
99
+ color: #578BB3;
100
+ }
101
+ pre.sunburst .SupportFunction {
102
+ color: #DAD085;
103
+ }
104
+ pre.sunburst .CssAdditionalConstants {
105
+ color: #DD7B3B;
106
+ }
107
+ pre.sunburst .MetaTagAll {
108
+ color: #89BDFF;
109
+ }
110
+ pre.sunburst .StringRegexp {
111
+ color: #E9C062;
112
+ }
113
+ pre.sunburst .StringEmbeddedSource {
114
+ color: #DAEFA3;
115
+ }
116
+ pre.sunburst .EntityInheritedClass {
117
+ color: #9B5C2E;
118
+ font-style: italic;
119
+ }
120
+ pre.sunburst .MarkupComment {
121
+ color: #F67B37;
122
+ font-style: italic;
123
+ }
124
+ pre.sunburst .MarkupBold {
125
+ font-weight: bold;
126
+ color: #E9C062;
127
+ }
128
+ pre.sunburst .CssId {
129
+ color: #8B98AB;
130
+ }
131
+ pre.sunburst .CssPseudoClass {
132
+ color: #8F9D6A;
133
+ }
134
+ pre.sunburst .JCast {
135
+ color: #676767;
136
+ font-style: italic;
137
+ }
138
+ pre.sunburst .StringVariable {
139
+ color: #8A9A95;
140
+ }
141
+ pre.sunburst .String {
142
+ color: #65B042;
143
+ }
144
+ pre.sunburst .Keyword {
145
+ color: #E28964;
146
+ }
147
+ pre.sunburst {
148
+ background-color: #000000;
149
+ color: #F8F8F8;
150
+ }
151
+ pre.sunburst .LogEntry {
152
+ background-color: #C7C7C7;
153
+ }
154
+ pre.sunburst .MarkupItalic {
155
+ color: #E9C062;
156
+ font-style: italic;
157
+ }
158
+ pre.sunburst .CssPropertyName {
159
+ color: #C5AF75;
160
+ }
161
+ pre.sunburst .Namespaces {
162
+ color: #E18964;
163
+ }
164
+ pre.sunburst .DoctypeXmlProcessing {
165
+ color: #494949;
166
+ }
167
+ pre.sunburst .InvalidDeprecated {
168
+ color: #FD5FF1;
169
+ font-style: italic;
170
+ }
171
+ pre.sunburst .Variable {
172
+ color: #3E87E3;
173
+ }
174
+ pre.sunburst .Entity {
175
+ color: #89BDFF;
176
+ }
177
+ pre.sunburst .Comment {
178
+ color: #AEAEAE;
179
+ font-style: italic;
180
+ }
@@ -0,0 +1,137 @@
1
+ pre.twilight .DiffInserted {
2
+ background-color: #253B22;
3
+ color: #F8F8F8;
4
+ }
5
+ pre.twilight .DiffHeader {
6
+ background-color: #0E2231;
7
+ color: #F8F8F8;
8
+ font-style: italic;
9
+ }
10
+ pre.twilight .CssPropertyValue {
11
+ color: #F9EE98;
12
+ }
13
+ pre.twilight .CCCPreprocessorDirective {
14
+ color: #AFC4DB;
15
+ }
16
+ pre.twilight .Constant {
17
+ color: #CF6A4C;
18
+ }
19
+ pre.twilight .DiffChanged {
20
+ background-color: #4A410D;
21
+ color: #F8F8F8;
22
+ }
23
+ pre.twilight .EmbeddedSource {
24
+ background-color: #A3A6AD;
25
+ }
26
+ pre.twilight .Support {
27
+ color: #9B859D;
28
+ }
29
+ pre.twilight .MarkupList {
30
+ color: #F9EE98;
31
+ }
32
+ pre.twilight .CssConstructorArgument {
33
+ color: #8F9D6A;
34
+ }
35
+ pre.twilight .Storage {
36
+ color: #F9EE98;
37
+ }
38
+ pre.twilight .line-numbers {
39
+ background-color: #DDF0FF;
40
+ color: #000000;
41
+ }
42
+ pre.twilight .CssClass {
43
+ color: #9B703F;
44
+ }
45
+ pre.twilight .StringConstant {
46
+ color: #DDF2A4;
47
+ }
48
+ pre.twilight .CssAtRule {
49
+ color: #8693A5;
50
+ }
51
+ pre.twilight .MetaTagInline {
52
+ color: #E0C589;
53
+ }
54
+ pre.twilight .MarkupHeading {
55
+ color: #CF6A4C;
56
+ }
57
+ pre.twilight .CssTagName {
58
+ color: #CDA869;
59
+ }
60
+ pre.twilight .SupportConstant {
61
+ color: #CF6A4C;
62
+ }
63
+ pre.twilight .DiffDeleted {
64
+ background-color: #420E09;
65
+ color: #F8F8F8;
66
+ }
67
+ pre.twilight .CCCPreprocessorLine {
68
+ color: #8996A8;
69
+ }
70
+ pre.twilight .StringRegexpSpecial {
71
+ color: #CF7D34;
72
+ }
73
+ pre.twilight .EmbeddedSourceBright {
74
+ background-color: #9C9EA4;
75
+ }
76
+ pre.twilight .InvalidIllegal {
77
+ background-color: #241A24;
78
+ color: #F8F8F8;
79
+ }
80
+ pre.twilight .SupportFunction {
81
+ color: #DAD085;
82
+ }
83
+ pre.twilight .CssAdditionalConstants {
84
+ color: #CA7840;
85
+ }
86
+ pre.twilight .MetaTagAll {
87
+ color: #AC885B;
88
+ }
89
+ pre.twilight .StringRegexp {
90
+ color: #E9C062;
91
+ }
92
+ pre.twilight .StringEmbeddedSource {
93
+ color: #DAEFA3;
94
+ }
95
+ pre.twilight .EntityInheritedClass {
96
+ color: #9B5C2E;
97
+ font-style: italic;
98
+ }
99
+ pre.twilight .CssId {
100
+ color: #8B98AB;
101
+ }
102
+ pre.twilight .CssPseudoClass {
103
+ color: #8F9D6A;
104
+ }
105
+ pre.twilight .StringVariable {
106
+ color: #8A9A95;
107
+ }
108
+ pre.twilight .String {
109
+ color: #8F9D6A;
110
+ }
111
+ pre.twilight .Keyword {
112
+ color: #CDA869;
113
+ }
114
+ pre.twilight {
115
+ background-color: #141414;
116
+ color: #F8F8F8;
117
+ }
118
+ pre.twilight .CssPropertyName {
119
+ color: #C5AF75;
120
+ }
121
+ pre.twilight .DoctypeXmlProcessing {
122
+ color: #494949;
123
+ }
124
+ pre.twilight .InvalidDeprecated {
125
+ color: #D2A8A1;
126
+ font-style: italic;
127
+ }
128
+ pre.twilight .Variable {
129
+ color: #7587A6;
130
+ }
131
+ pre.twilight .Entity {
132
+ color: #9B703F;
133
+ }
134
+ pre.twilight .Comment {
135
+ color: #5F5A60;
136
+ font-style: italic;
137
+ }