ultraviolet 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (212) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +216 -0
  3. data/README.txt +52 -0
  4. data/Rakefile +51 -0
  5. data/bin/theme2render +104 -0
  6. data/bin/uv +162 -0
  7. data/lib/uv.rb +84 -0
  8. data/lib/uv/html_processor.rb +89 -0
  9. data/render/old/txt2tags.render +131 -0
  10. data/render/xhtml/active4d.render +105 -0
  11. data/render/xhtml/all_hallows_eve.render +69 -0
  12. data/render/xhtml/amy.render +144 -0
  13. data/render/xhtml/blackboard.render +84 -0
  14. data/render/xhtml/brilliance_black.render +575 -0
  15. data/render/xhtml/brilliance_dull.render +534 -0
  16. data/render/xhtml/cobalt.render +135 -0
  17. data/render/xhtml/dawn.render +99 -0
  18. data/render/xhtml/eiffel.render +105 -0
  19. data/render/xhtml/espresso_libre.render +96 -0
  20. data/render/xhtml/files/css/active4d.css +114 -0
  21. data/render/xhtml/files/css/all_hallows_eve.css +72 -0
  22. data/render/xhtml/files/css/amy.css +144 -0
  23. data/render/xhtml/files/css/blackboard.css +88 -0
  24. data/render/xhtml/files/css/brilliance_black.css +632 -0
  25. data/render/xhtml/files/css/brilliance_dull.css +579 -0
  26. data/render/xhtml/files/css/cobalt.css +149 -0
  27. data/render/xhtml/files/css/dawn.css +121 -0
  28. data/render/xhtml/files/css/eiffel.css +121 -0
  29. data/render/xhtml/files/css/espresso_libre.css +109 -0
  30. data/render/xhtml/files/css/idle.css +62 -0
  31. data/render/xhtml/files/css/iplastic.css +80 -0
  32. data/render/xhtml/files/css/lazy.css +73 -0
  33. data/render/xhtml/files/css/mac_classic.css +123 -0
  34. data/render/xhtml/files/css/magicwb_amiga.css +101 -0
  35. data/render/xhtml/files/css/pastels_on_dark.css +188 -0
  36. data/render/xhtml/files/css/slush_poppies.css +85 -0
  37. data/render/xhtml/files/css/spacecadet.css +51 -0
  38. data/render/xhtml/files/css/sunburst.css +180 -0
  39. data/render/xhtml/files/css/twilight.css +137 -0
  40. data/render/xhtml/files/css/zenburnesque.css +88 -0
  41. data/render/xhtml/idle.render +66 -0
  42. data/render/xhtml/iplastic.render +72 -0
  43. data/render/xhtml/lazy.render +69 -0
  44. data/render/xhtml/mac_classic.render +108 -0
  45. data/render/xhtml/magicwb_amiga.render +90 -0
  46. data/render/xhtml/pastels_on_dark.render +177 -0
  47. data/render/xhtml/slush_poppies.render +96 -0
  48. data/render/xhtml/spacecadet.render +54 -0
  49. data/render/xhtml/sunburst.render +159 -0
  50. data/render/xhtml/twilight.render +126 -0
  51. data/render/xhtml/zenburnesque.render +99 -0
  52. data/syntax/actionscript.syntax +97 -0
  53. data/syntax/active4d.syntax +276 -0
  54. data/syntax/active4d_html.syntax +311 -0
  55. data/syntax/active4d_ini.syntax +50 -0
  56. data/syntax/active4d_library.syntax +21 -0
  57. data/syntax/ada.syntax +33 -0
  58. data/syntax/antlr.syntax +128 -0
  59. data/syntax/apache.syntax +176 -0
  60. data/syntax/applescript.syntax +384 -0
  61. data/syntax/asp.syntax +70 -0
  62. data/syntax/asp_vb.net.syntax +129 -0
  63. data/syntax/bibtex.syntax +151 -0
  64. data/syntax/blog_html.syntax +41 -0
  65. data/syntax/blog_markdown.syntax +42 -0
  66. data/syntax/blog_text.syntax +27 -0
  67. data/syntax/blog_textile.syntax +27 -0
  68. data/syntax/buggy/nemerle.yaml +74 -0
  69. data/syntax/build.syntax +53 -0
  70. data/syntax/bulletin_board.syntax +287 -0
  71. data/syntax/c++.syntax +109 -0
  72. data/syntax/c.syntax +326 -0
  73. data/syntax/cake.syntax +55 -0
  74. data/syntax/camlp4.syntax +36 -0
  75. data/syntax/coldfusion.syntax +118 -0
  76. data/syntax/context_free.syntax +176 -0
  77. data/syntax/cs.syntax +59 -0
  78. data/syntax/css.syntax +190 -0
  79. data/syntax/css_experimental.syntax +1925 -0
  80. data/syntax/csv.syntax +68 -0
  81. data/syntax/d.syntax +138 -0
  82. data/syntax/diff.syntax +81 -0
  83. data/syntax/dokuwiki.syntax +204 -0
  84. data/syntax/dot.syntax +47 -0
  85. data/syntax/doxygen.syntax +43 -0
  86. data/syntax/dylan.syntax +62 -0
  87. data/syntax/eiffel.syntax +78 -0
  88. data/syntax/erlang.syntax +922 -0
  89. data/syntax/f-script.syntax +80 -0
  90. data/syntax/fortran.syntax +141 -0
  91. data/syntax/fxscript.syntax +142 -0
  92. data/syntax/greasemonkey.syntax +34 -0
  93. data/syntax/gri.syntax +83 -0
  94. data/syntax/groovy.syntax +189 -0
  95. data/syntax/gtd2_text.syntax +31 -0
  96. data/syntax/gtdalt.syntax +143 -0
  97. data/syntax/haml.syntax +88 -0
  98. data/syntax/haskell.syntax +88 -0
  99. data/syntax/html-asp.syntax +27 -0
  100. data/syntax/html.syntax +362 -0
  101. data/syntax/html_django.syntax +36 -0
  102. data/syntax/html_for_asp.net.syntax +424 -0
  103. data/syntax/html_mason.syntax +119 -0
  104. data/syntax/html_rails.syntax +40 -0
  105. data/syntax/html_tcl.syntax +26 -0
  106. data/syntax/icalendar.syntax +32 -0
  107. data/syntax/inform.syntax +48 -0
  108. data/syntax/ini.syntax +54 -0
  109. data/syntax/installer_distribution_script.syntax +77 -0
  110. data/syntax/io.syntax +81 -0
  111. data/syntax/java.syntax +211 -0
  112. data/syntax/javaproperties.syntax +20 -0
  113. data/syntax/javascript.syntax +255 -0
  114. data/syntax/javascript_+_prototype.syntax +72 -0
  115. data/syntax/javascript_+_prototype_bracketed.syntax +140 -0
  116. data/syntax/jquery_javascript.syntax +114 -0
  117. data/syntax/json.syntax +136 -0
  118. data/syntax/languagedefinition.syntax +697 -0
  119. data/syntax/latex.syntax +566 -0
  120. data/syntax/latex_beamer.syntax +41 -0
  121. data/syntax/latex_log.syntax +50 -0
  122. data/syntax/latex_memoir.syntax +64 -0
  123. data/syntax/lexflex.syntax +219 -0
  124. data/syntax/lighttpd.syntax +54 -0
  125. data/syntax/lilypond.syntax +492 -0
  126. data/syntax/lisp.syntax +61 -0
  127. data/syntax/literate_haskell.syntax +24 -0
  128. data/syntax/logo.syntax +29 -0
  129. data/syntax/logtalk.syntax +152 -0
  130. data/syntax/lua.syntax +86 -0
  131. data/syntax/m.syntax +142 -0
  132. data/syntax/macports_portfile.syntax +143 -0
  133. data/syntax/mail.syntax +118 -0
  134. data/syntax/makefile.syntax +35 -0
  135. data/syntax/man.syntax +17 -0
  136. data/syntax/markdown.syntax +543 -0
  137. data/syntax/mediawiki.syntax +567 -0
  138. data/syntax/mel.syntax +92 -0
  139. data/syntax/mips.syntax +66 -0
  140. data/syntax/mod_perl.syntax +50 -0
  141. data/syntax/modula-3.syntax +47 -0
  142. data/syntax/moinmoin.syntax +189 -0
  143. data/syntax/mootools.syntax +572 -0
  144. data/syntax/movable_type.syntax +162 -0
  145. data/syntax/multimarkdown.syntax +39 -0
  146. data/syntax/objective-c++.syntax +18 -0
  147. data/syntax/objective-c.syntax +226 -0
  148. data/syntax/ocaml.syntax +764 -0
  149. data/syntax/ocamllex.syntax +167 -0
  150. data/syntax/ocamlyacc.syntax +184 -0
  151. data/syntax/old/YAML.yaml +160 -0
  152. data/syntax/old/txt2tags.yaml +139 -0
  153. data/syntax/opengl.syntax +14 -0
  154. data/syntax/pascal.syntax +77 -0
  155. data/syntax/perl.syntax +1075 -0
  156. data/syntax/php.syntax +678 -0
  157. data/syntax/plain_text.syntax +32 -0
  158. data/syntax/postscript.syntax +114 -0
  159. data/syntax/processing.syntax +106 -0
  160. data/syntax/prolog.syntax +40 -0
  161. data/syntax/property_list.syntax +645 -0
  162. data/syntax/python.syntax +865 -0
  163. data/syntax/python_django.syntax +21 -0
  164. data/syntax/qmake_project.syntax +114 -0
  165. data/syntax/qt_c++.syntax +26 -0
  166. data/syntax/quake3_config.syntax +32 -0
  167. data/syntax/r.syntax +81 -0
  168. data/syntax/r_console.syntax +16 -0
  169. data/syntax/ragel.syntax +201 -0
  170. data/syntax/rd_r_documentation.syntax +91 -0
  171. data/syntax/regexp.syntax +50 -0
  172. data/syntax/regular_expressions_oniguruma.syntax +107 -0
  173. data/syntax/regular_expressions_python.syntax +109 -0
  174. data/syntax/release_notes.syntax +37 -0
  175. data/syntax/remind.syntax +253 -0
  176. data/syntax/restructuredtext.syntax +250 -0
  177. data/syntax/rez.syntax +80 -0
  178. data/syntax/ruby.syntax +1035 -0
  179. data/syntax/ruby_experimental.syntax +145 -0
  180. data/syntax/ruby_on_rails.syntax +88 -0
  181. data/syntax/s5.syntax +69 -0
  182. data/syntax/scheme.syntax +347 -0
  183. data/syntax/scilab.syntax +41 -0
  184. data/syntax/setext.syntax +147 -0
  185. data/syntax/shell-unix-generic.syntax +384 -0
  186. data/syntax/slate.syntax +149 -0
  187. data/syntax/smarty.syntax +63 -0
  188. data/syntax/sql.syntax +237 -0
  189. data/syntax/sql_rails.syntax +18 -0
  190. data/syntax/ssh-config.syntax +33 -0
  191. data/syntax/standard_ml.syntax +45 -0
  192. data/syntax/strings_file.syntax +39 -0
  193. data/syntax/subversion_commit_message.syntax +36 -0
  194. data/syntax/sweave.syntax +84 -0
  195. data/syntax/swig.syntax +57 -0
  196. data/syntax/tcl.syntax +152 -0
  197. data/syntax/template_toolkit.syntax +121 -0
  198. data/syntax/tex.syntax +86 -0
  199. data/syntax/tex_math.syntax +49 -0
  200. data/syntax/textile.syntax +215 -0
  201. data/syntax/tsv.syntax +50 -0
  202. data/syntax/twiki.syntax +241 -0
  203. data/syntax/txt2tags.syntax +79 -0
  204. data/syntax/vectorscript.syntax +57 -0
  205. data/syntax/xhtml_1.0.syntax +4027 -0
  206. data/syntax/xml.syntax +179 -0
  207. data/syntax/xml_strict.syntax +92 -0
  208. data/syntax/xsl.syntax +60 -0
  209. data/syntax/yaml.syntax +160 -0
  210. data/syntax/yui_javascript.syntax +176 -0
  211. data/test/test_uv.rb +0 -0
  212. metadata +270 -0
@@ -0,0 +1,72 @@
1
+ pre.all_hallows_eve .ClassInheritance {
2
+ font-style: italic;
3
+ }
4
+ pre.all_hallows_eve .Constant {
5
+ color: #3387CC;
6
+ }
7
+ pre.all_hallows_eve .TypeName {
8
+ text-decoration: underline;
9
+ }
10
+ pre.all_hallows_eve .TextBase {
11
+ background-color: #434242;
12
+ color: #FFFFFF;
13
+ }
14
+ pre.all_hallows_eve {
15
+ background-color: #000000;
16
+ color: #FFFFFF;
17
+ }
18
+ pre.all_hallows_eve .StringEscapesExecuted {
19
+ color: #555555;
20
+ }
21
+ pre.all_hallows_eve .line-numbers {
22
+ background-color: #644D6E;
23
+ color: #FFFFFF;
24
+ }
25
+ pre.all_hallows_eve .StringExecuted {
26
+ background-color: #CCCC33;
27
+ color: #000000;
28
+ }
29
+ pre.all_hallows_eve .BlockComment {
30
+ background-color: #9B9B9B;
31
+ color: #FFFFFF;
32
+ }
33
+ pre.all_hallows_eve .TagName {
34
+ text-decoration: underline;
35
+ }
36
+ pre.all_hallows_eve .PreProcessorLine {
37
+ color: #D0D0FF;
38
+ }
39
+ pre.all_hallows_eve .SupportFunction {
40
+ color: #C83730;
41
+ }
42
+ pre.all_hallows_eve .FunctionArgument {
43
+ font-style: italic;
44
+ }
45
+ pre.all_hallows_eve .PreProcessorDirective {
46
+ }
47
+ pre.all_hallows_eve .StringEscapes {
48
+ color: #AAAAAA;
49
+ }
50
+ pre.all_hallows_eve .SourceBase {
51
+ background-color: #000000;
52
+ color: #FFFFFF;
53
+ }
54
+ pre.all_hallows_eve .TagAttribute {
55
+ }
56
+ pre.all_hallows_eve .StringLiteral {
57
+ color: #CCCC33;
58
+ }
59
+ pre.all_hallows_eve .String {
60
+ color: #66CC33;
61
+ }
62
+ pre.all_hallows_eve .Keyword {
63
+ color: #CC7833;
64
+ }
65
+ pre.all_hallows_eve .RegularExpression {
66
+ color: #CCCC33;
67
+ }
68
+ pre.all_hallows_eve .FunctionName {
69
+ }
70
+ pre.all_hallows_eve .Comment {
71
+ color: #9933CC;
72
+ }
@@ -0,0 +1,144 @@
1
+ pre.amy .PolymorphicVariants {
2
+ color: #60B0FF;
3
+ font-style: italic;
4
+ }
5
+ pre.amy .KeywordDecorator {
6
+ color: #D0D0FF;
7
+ }
8
+ pre.amy .Punctuation {
9
+ color: #805080;
10
+ }
11
+ pre.amy .InheritedClass {
12
+ }
13
+ pre.amy .InvalidDepricated {
14
+ background-color: #CC66FF;
15
+ color: #200020;
16
+ }
17
+ pre.amy .LibraryVariable {
18
+ }
19
+ pre.amy .TokenReferenceOcamlyacc {
20
+ color: #3CB0D0;
21
+ }
22
+ pre.amy .Storage {
23
+ color: #B0FFF0;
24
+ }
25
+ pre.amy .KeywordOperator {
26
+ color: #A0A0FF;
27
+ }
28
+ pre.amy .CharacterConstant {
29
+ color: #666666;
30
+ }
31
+ pre.amy .line-numbers {
32
+ background-color: #500010;
33
+ color: #D0D0FF;
34
+ }
35
+ pre.amy .ClassName {
36
+ color: #70E080;
37
+ }
38
+ pre.amy .Int64Constant {
39
+ font-style: italic;
40
+ }
41
+ pre.amy .NonTerminalReferenceOcamlyacc {
42
+ color: #C0F0F0;
43
+ }
44
+ pre.amy .TokenDefinitionOcamlyacc {
45
+ color: #3080A0;
46
+ }
47
+ pre.amy .ClassType {
48
+ color: #70E0A0;
49
+ }
50
+ pre.amy .ControlKeyword {
51
+ color: #80A0FF;
52
+ }
53
+ pre.amy .LineNumberDirectives {
54
+ text-decoration: underline;
55
+ color: #C080C0;
56
+ }
57
+ pre.amy .FloatingPointConstant {
58
+ text-decoration: underline;
59
+ }
60
+ pre.amy .Int32Constant {
61
+ font-weight: bold;
62
+ }
63
+ pre.amy .TagName {
64
+ color: #009090;
65
+ }
66
+ pre.amy .ModuleTypeDefinitions {
67
+ text-decoration: underline;
68
+ color: #B000B0;
69
+ }
70
+ pre.amy .Integer {
71
+ color: #7090B0;
72
+ }
73
+ pre.amy .Camlp4TempParser {
74
+ }
75
+ pre.amy .InvalidIllegal {
76
+ font-weight: bold;
77
+ background-color: #FFFF00;
78
+ color: #400080;
79
+ }
80
+ pre.amy .LibraryConstant {
81
+ background-color: #200020;
82
+ }
83
+ pre.amy .ModuleDefinitions {
84
+ color: #B000B0;
85
+ }
86
+ pre.amy .Variants {
87
+ color: #60B0FF;
88
+ }
89
+ pre.amy .CompilerDirectives {
90
+ color: #C080C0;
91
+ }
92
+ pre.amy .FloatingPointInfixOperator {
93
+ text-decoration: underline;
94
+ }
95
+ pre.amy {
96
+ background-color: #200020;
97
+ color: #D0D0FF;
98
+ }
99
+ pre.amy .FunctionArgument {
100
+ color: #80B0B0;
101
+ }
102
+ pre.amy .FloatingPointPrefixOperator {
103
+ text-decoration: underline;
104
+ }
105
+ pre.amy .NativeintConstant {
106
+ font-weight: bold;
107
+ }
108
+ pre.amy .BuiltInConstant {
109
+ }
110
+ pre.amy .BooleanConstant {
111
+ color: #8080A0;
112
+ }
113
+ pre.amy .LibraryClassType {
114
+ }
115
+ pre.amy .TagAttribute {
116
+ }
117
+ pre.amy .Keyword {
118
+ color: #A080FF;
119
+ }
120
+ pre.amy .UserDefinedConstant {
121
+ }
122
+ pre.amy .String {
123
+ color: #999999;
124
+ }
125
+ pre.amy .Camlp4Code {
126
+ background-color: #2A003F;
127
+ }
128
+ pre.amy .NonTerminalDefinitionOcamlyacc {
129
+ color: #90E0E0;
130
+ }
131
+ pre.amy .FunctionName {
132
+ color: #50A0A0;
133
+ }
134
+ pre.amy .SupportModules {
135
+ color: #A00050;
136
+ }
137
+ pre.amy .Variable {
138
+ color: #008080;
139
+ }
140
+ pre.amy .Comment {
141
+ background-color: #200020;
142
+ color: #404080;
143
+ font-style: italic;
144
+ }
@@ -0,0 +1,88 @@
1
+ pre.blackboard .LatexSupport {
2
+ color: #FBDE2D;
3
+ }
4
+ pre.blackboard .OcamlInfixOperator {
5
+ color: #8DA6CE;
6
+ }
7
+ pre.blackboard .MetaFunctionCallPy {
8
+ color: #BECDE6;
9
+ }
10
+ pre.blackboard .Superclass {
11
+ color: #FF6400;
12
+ font-style: italic;
13
+ }
14
+ pre.blackboard .Constant {
15
+ color: #D8FA3C;
16
+ }
17
+ pre.blackboard {
18
+ background-color: #0C1021;
19
+ color: #F8F8F8;
20
+ }
21
+ pre.blackboard .OcamlFPConstant {
22
+ text-decoration: underline;
23
+ }
24
+ pre.blackboard .OcamlFPInfixOperator {
25
+ text-decoration: underline;
26
+ }
27
+ pre.blackboard .Support {
28
+ color: #8DA6CE;
29
+ }
30
+ pre.blackboard .OcamlOperator {
31
+ color: #F8F8F8;
32
+ }
33
+ pre.blackboard .Storage {
34
+ color: #FBDE2D;
35
+ }
36
+ pre.blackboard .line-numbers {
37
+ background-color: #253B76;
38
+ color: #F8F8F8;
39
+ }
40
+ pre.blackboard .StringInterpolation {
41
+ color: #FF6400;
42
+ }
43
+ pre.blackboard .InvalidIllegal {
44
+ background-color: #9D1E15;
45
+ color: #F8F8F8;
46
+ }
47
+ pre.blackboard .PlistUnquotedString {
48
+ color: #FFFFFF;
49
+ }
50
+ pre.blackboard .OcamlVariant {
51
+ color: #D5E0F3;
52
+ }
53
+ pre.blackboard .MetaTag {
54
+ color: #7F90AA;
55
+ }
56
+ pre.blackboard .LatexEnvironment {
57
+ background-color: #131727;
58
+ }
59
+ pre.blackboard .OcamlFPPrefixOperator {
60
+ text-decoration: underline;
61
+ }
62
+ pre.blackboard .OcamlPrefixOperator {
63
+ color: #8DA6CE;
64
+ }
65
+ pre.blackboard .EntityNameSection {
66
+ color: #FFFFFF;
67
+ }
68
+ pre.blackboard .String {
69
+ color: #61CE3C;
70
+ }
71
+ pre.blackboard .Keyword {
72
+ color: #FBDE2D;
73
+ }
74
+ pre.blackboard .LatexEnvironmentNested {
75
+ background-color: #0F1427;
76
+ }
77
+ pre.blackboard .InvalidDeprecated {
78
+ color: #AB2A1D;
79
+ font-style: italic;
80
+ }
81
+ pre.blackboard .Variable {
82
+ }
83
+ pre.blackboard .Entity {
84
+ color: #FF6400;
85
+ }
86
+ pre.blackboard .Comment {
87
+ color: #AEAEAE;
88
+ }
@@ -0,0 +1,632 @@
1
+ pre.brilliance_black .EntityNameTypeModule {
2
+ color: #FF0000;
3
+ }
4
+ pre.brilliance_black .StringEmbeddedSource {
5
+ color: #406180;
6
+ }
7
+ pre.brilliance_black .line-numbers {
8
+ background-color: #050ED0;
9
+ color: #CCCCCC;
10
+ }
11
+ pre.brilliance_black .StorageModifier {
12
+ color: #803D00;
13
+ }
14
+ pre.brilliance_black .TagWildcard {
15
+ font-weight: bold;
16
+ color: #FF7900;
17
+ }
18
+ pre.brilliance_black .MUnderline {
19
+ text-decoration: underline;
20
+ }
21
+ pre.brilliance_black .MiscPunctuation {
22
+ font-weight: bold;
23
+ color: #666666;
24
+ }
25
+ pre.brilliance_black .LEntityNameSection {
26
+ background-color: #FFFFFF;
27
+ color: #000000;
28
+ }
29
+ pre.brilliance_black .MItalic {
30
+ font-style: italic;
31
+ }
32
+ pre.brilliance_black .EntityNameTypeVariant {
33
+ color: #00FFF8;
34
+ }
35
+ pre.brilliance_black .DDiffDelete {
36
+ background-color: #400022;
37
+ color: #FF40A3;
38
+ }
39
+ pre.brilliance_black .LMetaEnvironmentList {
40
+ background-color: #06067D;
41
+ color: #1414D2;
42
+ }
43
+ pre.brilliance_black .InheritedClass {
44
+ background-color: #230AC8;
45
+ color: #FF0086;
46
+ }
47
+ pre.brilliance_black .LKeywordOperatorBraces {
48
+ color: #666666;
49
+ }
50
+ pre.brilliance_black .ObjectPunctuation {
51
+ font-weight: bold;
52
+ color: #0C823B;
53
+ }
54
+ pre.brilliance_black .LMetaEndDocument {
55
+ background-color: #CCCCCC;
56
+ color: #000000;
57
+ }
58
+ pre.brilliance_black .LibraryConstant {
59
+ color: #00FFF8;
60
+ }
61
+ pre.brilliance_black .LibraryVariable {
62
+ background-color: #0A23E0;
63
+ color: #00FFF8;
64
+ }
65
+ pre.brilliance_black .MetaSourceEmbedded {
66
+ background-color: #06067D;
67
+ color: #666666;
68
+ }
69
+ pre.brilliance_black .MetaBracePipe {
70
+ background-color: #1414D2;
71
+ color: #4C4C4C;
72
+ }
73
+ pre.brilliance_black .LMarkup {
74
+ color: #CDCDCD;
75
+ }
76
+ pre.brilliance_black .KeywordOperatorArithmetic {
77
+ color: #2136CE;
78
+ }
79
+ pre.brilliance_black .LMetaLabelReference {
80
+ background-color: #1919FA;
81
+ }
82
+ pre.brilliance_black .LVariableParameterCite {
83
+ background-color: #400022;
84
+ color: #FFBFE1;
85
+ }
86
+ pre.brilliance_black .TagBlockForm {
87
+ background-color: #0B12ED;
88
+ }
89
+ pre.brilliance_black .MRawBlock {
90
+ background-color: #000000;
91
+ color: #999999;
92
+ }
93
+ pre.brilliance_black .KeywordControl {
94
+ color: #F800FF;
95
+ }
96
+ pre.brilliance_black .MetaDelimiter {
97
+ font-weight: bold;
98
+ background-color: #0F0FFA;
99
+ color: #FFFFFF;
100
+ }
101
+ pre.brilliance_black .LMetaEnvironmentList2 {
102
+ background-color: #06067D;
103
+ color: #1414D2;
104
+ }
105
+ pre.brilliance_black .LMetaFootnote {
106
+ background-color: #0A0AE1;
107
+ color: #090BFB;
108
+ }
109
+ pre.brilliance_black .RegexKeyword {
110
+ }
111
+ pre.brilliance_black .StringRegexGroup1 {
112
+ background-color: #1723C8;
113
+ }
114
+ pre.brilliance_black .TagName {
115
+ color: #5555FB;
116
+ }
117
+ pre.brilliance_black .VariableLanguageThisJsPrototype {
118
+ color: #666666;
119
+ }
120
+ pre.brilliance_black .PostContent {
121
+ background-color: #000000;
122
+ color: #CCCCCC;
123
+ }
124
+ pre.brilliance_black .BoldStringQuotes {
125
+ font-weight: bold;
126
+ color: #803D00;
127
+ }
128
+ pre.brilliance_black .MetaDelimiterObjectJs {
129
+ background-color: #0909BB;
130
+ }
131
+ pre.brilliance_black .MetaDelimiterStatementJs {
132
+ background-color: #03033F;
133
+ }
134
+ pre.brilliance_black .Invalid {
135
+ font-weight: bold;
136
+ background-color: #FF0007;
137
+ color: #330004;
138
+ }
139
+ pre.brilliance_black .LMetaEnvironmentList3 {
140
+ background-color: #000000;
141
+ color: #1414D2;
142
+ }
143
+ pre.brilliance_black .MQuoteBlock {
144
+ background-color: #2525FA;
145
+ }
146
+ pre.brilliance_black .ClassMethod {
147
+ color: #FF0086;
148
+ }
149
+ pre.brilliance_black .Keyword {
150
+ }
151
+ pre.brilliance_black .AttributeMatch {
152
+ background-color: #0A0AE1;
153
+ color: #0008FF;
154
+ }
155
+ pre.brilliance_black .StringRegexGroup2 {
156
+ background-color: #1723C8;
157
+ color: #6D6DFB;
158
+ }
159
+ pre.brilliance_black .DDiffAdd {
160
+ background-color: #00401E;
161
+ color: #40FF9A;
162
+ }
163
+ pre.brilliance_black .MetaBraceErbReturnValue {
164
+ background-color: #0A23D9;
165
+ color: #00FFAA;
166
+ }
167
+ pre.brilliance_black .LMetaEnvironmentList4 {
168
+ color: #1414D2;
169
+ }
170
+ pre.brilliance_black .FunctionDeclarationParametersPunctuation {
171
+ color: #800004;
172
+ }
173
+ pre.brilliance_black .TagAttribute {
174
+ color: #3D3DFA;
175
+ }
176
+ pre.brilliance_black .MReference {
177
+ color: #0086FF;
178
+ }
179
+ pre.brilliance_black .StringRegexGroup3 {
180
+ background-color: #1723C8;
181
+ color: #6D6DFB;
182
+ }
183
+ pre.brilliance_black .GlobalVariable {
184
+ background-color: #0A17E1;
185
+ color: #00807C;
186
+ }
187
+ pre.brilliance_black .Group1 {
188
+ background-color: #0A0A0A;
189
+ }
190
+ pre.brilliance_black .LMetaEnvironmentList5 {
191
+ color: #1414D2;
192
+ }
193
+ pre.brilliance_black .EntityNamePreprocessor {
194
+ background-color: #2316C8;
195
+ }
196
+ pre.brilliance_black .FunctionDeclarationParameters {
197
+ color: #9799FF;
198
+ }
199
+ pre.brilliance_black .StringRegexGroup4 {
200
+ background-color: #1723C8;
201
+ color: #6D6DFB;
202
+ }
203
+ pre.brilliance_black .LSupportFunctionSection {
204
+ color: #C1C1FD;
205
+ }
206
+ pre.brilliance_black .Group2 {
207
+ background-color: #0E0E0E;
208
+ }
209
+ pre.brilliance_black .LMetaEnvironmentList6 {
210
+ color: #1414D2;
211
+ }
212
+ pre.brilliance_black .Id {
213
+ color: #FF0086;
214
+ }
215
+ pre.brilliance_black .Group3 {
216
+ background-color: #111111;
217
+ }
218
+ pre.brilliance_black .CurlyPunctuation {
219
+ font-weight: bold;
220
+ color: #FFFFFF;
221
+ }
222
+ pre.brilliance_black .MetaClassInstanceConstructorKeywordOperatorNew {
223
+ color: #800043;
224
+ }
225
+ pre.brilliance_black .SubtlegradientCom {
226
+ background-color: #FFFFFF;
227
+ text-decoration: underline;
228
+ color: #555555;
229
+ }
230
+ pre.brilliance_black .StringPunctuation {
231
+ color: #803D00;
232
+ }
233
+ pre.brilliance_black .LSupportFunction {
234
+ color: #BC80FF;
235
+ }
236
+ pre.brilliance_black .Group4 {
237
+ background-color: #151515;
238
+ }
239
+ pre.brilliance_black .TextSubversionCommit {
240
+ background-color: #FFFFFF;
241
+ color: #000000;
242
+ }
243
+ pre.brilliance_black .SourceEmbededSource {
244
+ background-color: #1010E5;
245
+ }
246
+ pre.brilliance_black .LVariableParameterLabel {
247
+ color: #8686FC;
248
+ }
249
+ pre.brilliance_black .TagOther {
250
+ background-color: #230AC8;
251
+ color: #FF0007;
252
+ }
253
+ pre.brilliance_black .ClassVariable {
254
+ background-color: #0A0CFA;
255
+ color: #0086FF;
256
+ }
257
+ pre.brilliance_black .MetaGroupAssertionRegexp {
258
+ background-color: #0A25FA;
259
+ }
260
+ pre.brilliance_black .KeywordOperatorLogical {
261
+ background-color: #0A0AE6;
262
+ color: #3759FF;
263
+ }
264
+ pre.brilliance_black .Group5 {
265
+ background-color: #191919;
266
+ }
267
+ pre.brilliance_black .DDiffChanged {
268
+ background-color: #803D00;
269
+ color: #FFFF55;
270
+ }
271
+ pre.brilliance_black .HtmlComment {
272
+ font-style: italic;
273
+ }
274
+ pre.brilliance_black .StringInterpolated {
275
+ background-color: #1A1A1A;
276
+ color: #FFFC80;
277
+ }
278
+ pre.brilliance_black .InstanceConstructor {
279
+ background-color: #2410D8;
280
+ }
281
+ pre.brilliance_black .Instance {
282
+ color: #FF3D44;
283
+ }
284
+ pre.brilliance_black .MetaPropertyList {
285
+ font-weight: bold;
286
+ color: #333333;
287
+ }
288
+ pre.brilliance_black .Group6 {
289
+ background-color: #1C1C1C;
290
+ }
291
+ pre.brilliance_black .EntityNameTagMetaRecordDefinition {
292
+ color: #00FF79;
293
+ }
294
+ pre.brilliance_black .KeywordOther {
295
+ color: #7900FF;
296
+ }
297
+ pre.brilliance_black .FunctionDeclarationName {
298
+ color: #FF0086;
299
+ }
300
+ pre.brilliance_black .Latex {
301
+ }
302
+ pre.brilliance_black .LMarkupRaw {
303
+ background-color: #000000;
304
+ }
305
+ pre.brilliance_black .StringPunctuationIi {
306
+ color: #3D3BC8;
307
+ }
308
+ pre.brilliance_black .Group7 {
309
+ background-color: #1F1F1F;
310
+ }
311
+ pre.brilliance_black .Css {
312
+ }
313
+ pre.brilliance_black .ClassName {
314
+ color: #FF0000;
315
+ }
316
+ pre.brilliance_black .MetaPropertyName {
317
+ color: #999999;
318
+ }
319
+ pre.brilliance_black .LKeywordControlRef {
320
+ background-color: #260001;
321
+ color: #FF0007;
322
+ }
323
+ pre.brilliance_black .Group8 {
324
+ background-color: #212121;
325
+ }
326
+ pre.brilliance_black .PseudoClass {
327
+ color: #7900FF;
328
+ }
329
+ pre.brilliance_black .Group9 {
330
+ background-color: #242424;
331
+ }
332
+ pre.brilliance_black .TagBlockHead {
333
+ background-color: #121212;
334
+ }
335
+ pre.brilliance_black .StringRegexArbitraryRepitition {
336
+ background-color: #1723C8;
337
+ color: #00FFF8;
338
+ }
339
+ pre.brilliance_black .LKeywordOperatorDelimiter {
340
+ background-color: #06067D;
341
+ }
342
+ pre.brilliance_black .BlogPostEmailMessage {
343
+ background-color: #DCDCDC;
344
+ color: #333333;
345
+ }
346
+ pre.brilliance_black .MReferenceName {
347
+ background-color: #0A17E1;
348
+ color: #00FFF8;
349
+ }
350
+ pre.brilliance_black .TextSubversionCommitMetaScopeChangedFiles {
351
+ background-color: #000000;
352
+ color: #FFFFFF;
353
+ }
354
+ pre.brilliance_black .CommentLine {
355
+ color: #4C4C4C;
356
+ font-style: italic;
357
+ }
358
+ pre.brilliance_black .VariablePunctuation {
359
+ color: #06067D;
360
+ }
361
+ pre.brilliance_black .MUnderlineLink {
362
+ text-decoration: underline;
363
+ color: #00FFF8;
364
+ }
365
+ pre.brilliance_black .Selector {
366
+ background-color: #06067D;
367
+ color: #666666;
368
+ }
369
+ pre.brilliance_black .Even {
370
+ background-color: #06067D;
371
+ }
372
+ pre.brilliance_black .TagDoctype {
373
+ background-color: #333333;
374
+ color: #CCCCCC;
375
+ }
376
+ pre.brilliance_black .Class {
377
+ color: #F800FF;
378
+ }
379
+ pre.brilliance_black .BuiltInConstant {
380
+ background-color: #0B23C8;
381
+ color: #07FF00;
382
+ }
383
+ pre.brilliance_black .MBold {
384
+ font-weight: bold;
385
+ }
386
+ pre.brilliance_black .MHeading {
387
+ background-color: #202096;
388
+ color: #666666;
389
+ }
390
+ pre.brilliance_black .ConstantVariable {
391
+ color: #00FFF8;
392
+ }
393
+ pre.brilliance_black .Group10 {
394
+ background-color: #1F1F1F;
395
+ }
396
+ pre.brilliance_black .LKeywordControlCite {
397
+ background-color: #260014;
398
+ color: #FF0086;
399
+ }
400
+ pre.brilliance_black .XmlTag {
401
+ color: #666666;
402
+ }
403
+ pre.brilliance_black .MHr {
404
+ background-color: #FFFFFF;
405
+ color: #000000;
406
+ }
407
+ pre.brilliance_black .Group11 {
408
+ background-color: #151515;
409
+ }
410
+ pre.brilliance_black .FunctionPunctuation {
411
+ color: #800043;
412
+ }
413
+ pre.brilliance_black .Variable {
414
+ color: #31A6FF;
415
+ }
416
+ pre.brilliance_black .FunctionCallArgumentsPunctuation {
417
+ color: #BC80FF;
418
+ }
419
+ pre.brilliance_black .Syntax {
420
+ color: #333333;
421
+ }
422
+ pre.brilliance_black .MetaPropertyValue {
423
+ background-color: #0D0D0D;
424
+ color: #999999;
425
+ }
426
+ pre.brilliance_black .KeywordOperator {
427
+ color: #0000CE;
428
+ }
429
+ pre.brilliance_black .StringUnquoted {
430
+ color: #FFBC80;
431
+ }
432
+ pre.brilliance_black .LConstantLanguageGeneral {
433
+ }
434
+ pre.brilliance_black .TextStringSource {
435
+ color: #999999;
436
+ }
437
+ pre.brilliance_black .LVariableParameterLabelReference {
438
+ background-color: #400002;
439
+ color: #FFBC80;
440
+ }
441
+ pre.brilliance_black .Source {
442
+ background-color: #000000;
443
+ }
444
+ pre.brilliance_black .LibraryFunctionCall {
445
+ color: #9D3EFF;
446
+ }
447
+ pre.brilliance_black .StringRegexCharacterClass {
448
+ background-color: #1723C8;
449
+ color: #86FF00;
450
+ }
451
+ pre.brilliance_black .LibraryFunctionName {
452
+ background-color: #1D16E1;
453
+ color: #603F80;
454
+ }
455
+ pre.brilliance_black .MetaBlockContentSlate {
456
+ color: #CCCCCC;
457
+ }
458
+ pre.brilliance_black .TextStringSourceStringSource {
459
+ }
460
+ pre.brilliance_black .String {
461
+ background-color: #2316C8;
462
+ color: #FFFC80;
463
+ }
464
+ pre.brilliance_black .TagInline {
465
+ background-color: #2316C8;
466
+ color: #FF7900;
467
+ }
468
+ pre.brilliance_black .MetaBlockSlate {
469
+ color: #666666;
470
+ }
471
+ pre.brilliance_black .SourceRubyRailsEmbeddedOneLine {
472
+ background-color: #0B25F9;
473
+ }
474
+ pre.brilliance_black .SourceRubyRailsEmbeddedReturnValueOneLine {
475
+ background-color: #1818ED;
476
+ }
477
+ pre.brilliance_black .MMarkup {
478
+ background-color: #1414D2;
479
+ color: #FFF800;
480
+ }
481
+ pre.brilliance_black .TagBlock {
482
+ background-color: #1919D7;
483
+ color: #4C4C4C;
484
+ }
485
+ pre.brilliance_black .SourceStringInterpolatedSource {
486
+ background-color: #050564;
487
+ color: #999999;
488
+ }
489
+ pre.brilliance_black .SourceStringSource {
490
+ background-color: #202096;
491
+ color: #FFFFFF;
492
+ }
493
+ pre.brilliance_black .xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx {
494
+ background-color: #FFFFFF;
495
+ color: #E6E6E6;
496
+ }
497
+ pre.brilliance_black .LKeywordOperatorBrackets {
498
+ color: #999999;
499
+ }
500
+ pre.brilliance_black .TagMeta {
501
+ background-color: #160AE1;
502
+ color: #F800FF;
503
+ }
504
+ pre.brilliance_black .GlobalPreDefinedVariable {
505
+ background-color: #0A23E0;
506
+ color: #00FF79;
507
+ }
508
+ pre.brilliance_black .TagForm {
509
+ background-color: #0A17E1;
510
+ color: #0086FF;
511
+ }
512
+ pre.brilliance_black .Tag {
513
+ color: #FF0007;
514
+ }
515
+ pre.brilliance_black .UserDefinedConstant {
516
+ color: #00FF79;
517
+ }
518
+ pre.brilliance_black .NormalVariables {
519
+ color: #406180;
520
+ }
521
+ pre.brilliance_black .ThomasAylott {
522
+ font-weight: bold;
523
+ background-color: #FFFFFF;
524
+ color: #000000;
525
+ }
526
+ pre.brilliance_black .TextSource {
527
+ background-color: #000000;
528
+ color: #CCCCCC;
529
+ }
530
+ pre.brilliance_black .MetaBraceErb {
531
+ background-color: #000000;
532
+ }
533
+ pre.brilliance_black .SupportTypePropertyName {
534
+ background-color: #000000;
535
+ color: #FFFFFF;
536
+ }
537
+ pre.brilliance_black .StringLiteral {
538
+ background-color: #1723C8;
539
+ color: #FFF800;
540
+ }
541
+ pre.brilliance_black .KeywordOperatorAssignment {
542
+ background-color: #0A0AE6;
543
+ color: #0000CE;
544
+ }
545
+ pre.brilliance_black .KeywordOperatorComparison {
546
+ color: #7C88FF;
547
+ }
548
+ pre.brilliance_black .MetaGroupBracesRoundJs {
549
+ }
550
+ pre.brilliance_black .PostHeaderValues {
551
+ background-color: #2525E9;
552
+ color: #803D00;
553
+ }
554
+ pre.brilliance_black .Comment {
555
+ background-color: #1414D2;
556
+ color: #4C4C4C;
557
+ }
558
+ pre.brilliance_black .Text {
559
+ color: #FFFFFF;
560
+ }
561
+ pre.brilliance_black .SourceJsEmbedded {
562
+ background-color: #0D0D0D;
563
+ }
564
+ pre.brilliance_black .FunctionCallWithoutArguments {
565
+ color: #A88FC0;
566
+ }
567
+ pre.brilliance_black .StringRegex {
568
+ background-color: #1723C8;
569
+ color: #FFF800;
570
+ }
571
+ pre.brilliance_black .FunctionCall {
572
+ color: #782EC1;
573
+ }
574
+ pre.brilliance_black .CommentPunctuation {
575
+ }
576
+ pre.brilliance_black .LMetaGroupBraces {
577
+ color: #1414D2;
578
+ }
579
+ pre.brilliance_black .MetaTagInlineSource {
580
+ background-color: #2316C8;
581
+ }
582
+ pre.brilliance_black .TagStructure {
583
+ background-color: #292965;
584
+ color: #666666;
585
+ }
586
+ pre.brilliance_black .Storage {
587
+ color: #7E0080;
588
+ }
589
+ pre.brilliance_black .MetaAssertion {
590
+ color: #0086FF;
591
+ }
592
+ pre.brilliance_black .MetaBraceCurlyMetaGroup {
593
+ background-color: #06067D;
594
+ color: #CCCCCC;
595
+ }
596
+ pre.brilliance_black .ArrayPunctuation {
597
+ font-weight: bold;
598
+ background-color: #1811E0;
599
+ color: #7F5E40;
600
+ }
601
+ pre.brilliance_black .PostHeaderKeys {
602
+ background-color: #0B25F9;
603
+ color: #06403E;
604
+ }
605
+ pre.brilliance_black .InstanceVariable {
606
+ color: #406180;
607
+ }
608
+ pre.brilliance_black .CharacterConstant {
609
+ color: #86FF00;
610
+ }
611
+ pre.brilliance_black {
612
+ background-color: #0D0D12;
613
+ color: #CCCCCC;
614
+ }
615
+ pre.brilliance_black .LibraryClassType {
616
+ background-color: #250AC8;
617
+ color: #FF0000;
618
+ }
619
+ pre.brilliance_black .Number {
620
+ color: #C6FF00;
621
+ }
622
+ pre.brilliance_black .SupportOtherModule {
623
+ background-color: #240AC8;
624
+ color: #FF0000;
625
+ }
626
+ pre.brilliance_black .TagValue {
627
+ color: #6D6DFB;
628
+ }
629
+ pre.brilliance_black .FunctionDeclaration {
630
+ background-color: #140CCE;
631
+ color: #999999;
632
+ }