devver-ultraviolet 0.10.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +25 -0
- data/Manifest.txt +233 -0
- data/README.txt +52 -0
- data/bin/theme2latexrender +122 -0
- data/bin/theme2xhtmlrender +156 -0
- data/bin/uv +140 -0
- data/lib/uv.rb +94 -0
- data/lib/uv/render_processor.rb +146 -0
- data/lib/uv/utility.rb +67 -0
- data/render/latex/active4d.render +132 -0
- data/render/latex/all_hallows_eve.render +96 -0
- data/render/latex/amy.render +171 -0
- data/render/latex/blackboard.render +111 -0
- data/render/latex/brilliance_black.render +552 -0
- data/render/latex/brilliance_dull.render +561 -0
- data/render/latex/cobalt.render +162 -0
- data/render/latex/dawn.render +126 -0
- data/render/latex/eiffel.render +132 -0
- data/render/latex/espresso_libre.render +123 -0
- data/render/latex/idle.render +93 -0
- data/render/latex/iplastic.render +99 -0
- data/render/latex/lazy.render +96 -0
- data/render/latex/mac_classic.render +135 -0
- data/render/latex/magicwb_amiga.render +117 -0
- data/render/latex/pastels_on_dark.render +204 -0
- data/render/latex/slush_poppies.render +123 -0
- data/render/latex/spacecadet.render +81 -0
- data/render/latex/sunburst.render +186 -0
- data/render/latex/twilight.render +153 -0
- data/render/latex/zenburnesque.render +126 -0
- data/render/old/txt2tags.render +131 -0
- data/render/xhtml/active4d.render +140 -0
- data/render/xhtml/all_hallows_eve.render +104 -0
- data/render/xhtml/amy.render +179 -0
- data/render/xhtml/blackboard.render +119 -0
- data/render/xhtml/brilliance_black.render +560 -0
- data/render/xhtml/brilliance_dull.render +569 -0
- data/render/xhtml/cobalt.render +170 -0
- data/render/xhtml/dawn.render +134 -0
- data/render/xhtml/eiffel.render +140 -0
- data/render/xhtml/espresso_libre.render +131 -0
- data/render/xhtml/files/css/active4d.css +114 -0
- data/render/xhtml/files/css/all_hallows_eve.css +72 -0
- data/render/xhtml/files/css/amy.css +147 -0
- data/render/xhtml/files/css/blackboard.css +88 -0
- data/render/xhtml/files/css/brilliance_black.css +605 -0
- data/render/xhtml/files/css/brilliance_dull.css +599 -0
- data/render/xhtml/files/css/cobalt.css +149 -0
- data/render/xhtml/files/css/dawn.css +121 -0
- data/render/xhtml/files/css/eiffel.css +121 -0
- data/render/xhtml/files/css/espresso_libre.css +109 -0
- data/render/xhtml/files/css/idle.css +62 -0
- data/render/xhtml/files/css/iplastic.css +80 -0
- data/render/xhtml/files/css/lazy.css +73 -0
- data/render/xhtml/files/css/mac_classic.css +123 -0
- data/render/xhtml/files/css/magicwb_amiga.css +104 -0
- data/render/xhtml/files/css/pastels_on_dark.css +188 -0
- data/render/xhtml/files/css/slush_poppies.css +85 -0
- data/render/xhtml/files/css/spacecadet.css +51 -0
- data/render/xhtml/files/css/sunburst.css +180 -0
- data/render/xhtml/files/css/twilight.css +137 -0
- data/render/xhtml/files/css/zenburnesque.css +91 -0
- data/render/xhtml/idle.render +101 -0
- data/render/xhtml/iplastic.render +107 -0
- data/render/xhtml/lazy.render +104 -0
- data/render/xhtml/mac_classic.render +143 -0
- data/render/xhtml/magicwb_amiga.render +125 -0
- data/render/xhtml/pastels_on_dark.render +212 -0
- data/render/xhtml/slush_poppies.render +131 -0
- data/render/xhtml/spacecadet.render +89 -0
- data/render/xhtml/sunburst.render +194 -0
- data/render/xhtml/twilight.render +161 -0
- data/render/xhtml/zenburnesque.render +134 -0
- data/syntax/actionscript.syntax +97 -0
- data/syntax/active4d.syntax +276 -0
- data/syntax/active4d_html.syntax +311 -0
- data/syntax/active4d_ini.syntax +50 -0
- data/syntax/active4d_library.syntax +21 -0
- data/syntax/ada.syntax +33 -0
- data/syntax/antlr.syntax +151 -0
- data/syntax/apache.syntax +191 -0
- data/syntax/applescript.syntax +384 -0
- data/syntax/asp.syntax +70 -0
- data/syntax/asp_vb.net.syntax +129 -0
- data/syntax/bibtex.syntax +151 -0
- data/syntax/blog_html.syntax +41 -0
- data/syntax/blog_markdown.syntax +42 -0
- data/syntax/blog_text.syntax +27 -0
- data/syntax/blog_textile.syntax +27 -0
- data/syntax/build.syntax +53 -0
- data/syntax/bulletin_board.syntax +287 -0
- data/syntax/cake.syntax +55 -0
- data/syntax/camlp4.syntax +36 -0
- data/syntax/cm.syntax +32 -0
- data/syntax/coldfusion.syntax +119 -0
- data/syntax/context_free.syntax +176 -0
- data/syntax/cs.syntax +59 -0
- data/syntax/css.syntax +195 -0
- data/syntax/css_experimental.syntax +1925 -0
- data/syntax/csv.syntax +68 -0
- data/syntax/d.syntax +142 -0
- data/syntax/diff.syntax +81 -0
- data/syntax/dokuwiki.syntax +204 -0
- data/syntax/dot.syntax +47 -0
- data/syntax/doxygen.syntax +43 -0
- data/syntax/dylan.syntax +62 -0
- data/syntax/eiffel.syntax +78 -0
- data/syntax/erlang.syntax +922 -0
- data/syntax/f-script.syntax +80 -0
- data/syntax/fortran.syntax +141 -0
- data/syntax/fxscript.syntax +142 -0
- data/syntax/greasemonkey.syntax +34 -0
- data/syntax/gri.syntax +83 -0
- data/syntax/groovy.syntax +191 -0
- data/syntax/gtd.syntax +22 -0
- data/syntax/gtdalt.syntax +143 -0
- data/syntax/haml.syntax +88 -0
- data/syntax/haskell.syntax +88 -0
- data/syntax/html-asp.syntax +27 -0
- data/syntax/html.syntax +362 -0
- data/syntax/html_django.syntax +36 -0
- data/syntax/html_for_asp.net.syntax +424 -0
- data/syntax/html_mason.syntax +119 -0
- data/syntax/html_rails.syntax +40 -0
- data/syntax/html_tcl.syntax +26 -0
- data/syntax/icalendar.syntax +32 -0
- data/syntax/inform.syntax +48 -0
- data/syntax/ini.syntax +55 -0
- data/syntax/installer_distribution_script.syntax +77 -0
- data/syntax/io.syntax +81 -0
- data/syntax/java.syntax +211 -0
- data/syntax/javaproperties.syntax +20 -0
- data/syntax/javascript.syntax +256 -0
- data/syntax/javascript_+_prototype.syntax +72 -0
- data/syntax/javascript_+_prototype_bracketed.syntax +140 -0
- data/syntax/jquery_javascript.syntax +114 -0
- data/syntax/json.syntax +136 -0
- data/syntax/languagedefinition.syntax +708 -0
- data/syntax/latex.syntax +566 -0
- data/syntax/latex_beamer.syntax +41 -0
- data/syntax/latex_log.syntax +50 -0
- data/syntax/latex_memoir.syntax +64 -0
- data/syntax/lexflex.syntax +219 -0
- data/syntax/lighttpd.syntax +54 -0
- data/syntax/lilypond.syntax +492 -0
- data/syntax/lisp.syntax +61 -0
- data/syntax/literate_haskell.syntax +24 -0
- data/syntax/logo.syntax +29 -0
- data/syntax/logtalk.syntax +152 -0
- data/syntax/lua.syntax +86 -0
- data/syntax/m.syntax +142 -0
- data/syntax/macports_portfile.syntax +163 -0
- data/syntax/makefile.syntax +36 -0
- data/syntax/man.syntax +17 -0
- data/syntax/mediawiki.syntax +567 -0
- data/syntax/mips.syntax +66 -0
- data/syntax/mod_perl.syntax +50 -0
- data/syntax/modula-3.syntax +47 -0
- data/syntax/moinmoin.syntax +189 -0
- data/syntax/mootools.syntax +572 -0
- data/syntax/movable_type.syntax +162 -0
- data/syntax/multimarkdown.syntax +39 -0
- data/syntax/objective-c++.syntax +18 -0
- data/syntax/objective-c.syntax +233 -0
- data/syntax/ocaml.syntax +764 -0
- data/syntax/ocamllex.syntax +167 -0
- data/syntax/ocamlyacc.syntax +184 -0
- data/syntax/opengl.syntax +14 -0
- data/syntax/pascal.syntax +77 -0
- data/syntax/perl.syntax +1115 -0
- data/syntax/plain_text.syntax +32 -0
- data/syntax/postscript.syntax +114 -0
- data/syntax/processing.syntax +106 -0
- data/syntax/prolog.syntax +40 -0
- data/syntax/property_list.syntax +635 -0
- data/syntax/python.syntax +868 -0
- data/syntax/python_django.syntax +21 -0
- data/syntax/qmake_project.syntax +114 -0
- data/syntax/qt_c++.syntax +26 -0
- data/syntax/quake3_config.syntax +32 -0
- data/syntax/r.syntax +81 -0
- data/syntax/r_console.syntax +16 -0
- data/syntax/ragel.syntax +201 -0
- data/syntax/rd_r_documentation.syntax +91 -0
- data/syntax/regexp.syntax +50 -0
- data/syntax/release_notes.syntax +46 -0
- data/syntax/remind.syntax +253 -0
- data/syntax/restructuredtext.syntax +250 -0
- data/syntax/rez.syntax +80 -0
- data/syntax/ruby.syntax +1035 -0
- data/syntax/ruby_experimental.syntax +145 -0
- data/syntax/ruby_on_rails.syntax +88 -0
- data/syntax/s5.syntax +69 -0
- data/syntax/scheme.syntax +347 -0
- data/syntax/scilab.syntax +41 -0
- data/syntax/setext.syntax +147 -0
- data/syntax/shell-unix-generic.syntax +384 -0
- data/syntax/slate.syntax +149 -0
- data/syntax/sql.syntax +237 -0
- data/syntax/sql_rails.syntax +18 -0
- data/syntax/ssh-config.syntax +33 -0
- data/syntax/standard_ml.syntax +121 -0
- data/syntax/strings_file.syntax +39 -0
- data/syntax/subversion_commit_message.syntax +36 -0
- data/syntax/sweave.syntax +84 -0
- data/syntax/swig.syntax +57 -0
- data/syntax/tcl.syntax +152 -0
- data/syntax/template_toolkit.syntax +121 -0
- data/syntax/tex.syntax +86 -0
- data/syntax/tex_math.syntax +49 -0
- data/syntax/textile.syntax +215 -0
- data/syntax/tsv.syntax +50 -0
- data/syntax/twiki.syntax +241 -0
- data/syntax/txt2tags.syntax +79 -0
- data/syntax/vectorscript.syntax +57 -0
- data/syntax/xhtml_1.0.syntax +4027 -0
- data/syntax/xml.syntax +180 -0
- data/syntax/xml_strict.syntax +92 -0
- data/syntax/xsl.syntax +60 -0
- data/syntax/yaml.syntax +160 -0
- data/syntax/yui_javascript.syntax +176 -0
- metadata +310 -0
@@ -0,0 +1,62 @@
|
|
1
|
+
pre.idle .InheritedClass {
|
2
|
+
}
|
3
|
+
pre.idle .TypeName {
|
4
|
+
color: #21439C;
|
5
|
+
}
|
6
|
+
pre.idle .Number {
|
7
|
+
}
|
8
|
+
pre.idle .LibraryVariable {
|
9
|
+
color: #A535AE;
|
10
|
+
}
|
11
|
+
pre.idle .Storage {
|
12
|
+
color: #FF5600;
|
13
|
+
}
|
14
|
+
pre.idle .line-numbers {
|
15
|
+
background-color: #BAD6FD;
|
16
|
+
color: #000000;
|
17
|
+
}
|
18
|
+
pre.idle {
|
19
|
+
background-color: #FFFFFF;
|
20
|
+
color: #000000;
|
21
|
+
}
|
22
|
+
pre.idle .StringInterpolation {
|
23
|
+
color: #990000;
|
24
|
+
}
|
25
|
+
pre.idle .TagName {
|
26
|
+
}
|
27
|
+
pre.idle .LibraryConstant {
|
28
|
+
color: #A535AE;
|
29
|
+
}
|
30
|
+
pre.idle .FunctionArgument {
|
31
|
+
}
|
32
|
+
pre.idle .BuiltInConstant {
|
33
|
+
color: #A535AE;
|
34
|
+
}
|
35
|
+
pre.idle .Invalid {
|
36
|
+
background-color: #990000;
|
37
|
+
color: #FFFFFF;
|
38
|
+
}
|
39
|
+
pre.idle .LibraryClassType {
|
40
|
+
color: #A535AE;
|
41
|
+
}
|
42
|
+
pre.idle .LibraryFunction {
|
43
|
+
color: #A535AE;
|
44
|
+
}
|
45
|
+
pre.idle .TagAttribute {
|
46
|
+
}
|
47
|
+
pre.idle .Keyword {
|
48
|
+
color: #FF5600;
|
49
|
+
}
|
50
|
+
pre.idle .UserDefinedConstant {
|
51
|
+
}
|
52
|
+
pre.idle .String {
|
53
|
+
color: #00A33F;
|
54
|
+
}
|
55
|
+
pre.idle .FunctionName {
|
56
|
+
color: #21439C;
|
57
|
+
}
|
58
|
+
pre.idle .Variable {
|
59
|
+
}
|
60
|
+
pre.idle .Comment {
|
61
|
+
color: #919191;
|
62
|
+
}
|
@@ -0,0 +1,80 @@
|
|
1
|
+
pre.iplastic .Constant {
|
2
|
+
color: #6782D3;
|
3
|
+
}
|
4
|
+
pre.iplastic .Support {
|
5
|
+
font-weight: bold;
|
6
|
+
color: #3333FF;
|
7
|
+
}
|
8
|
+
pre.iplastic .EmbeddedSource {
|
9
|
+
background-color: #F9F9F9;
|
10
|
+
color: #000000;
|
11
|
+
}
|
12
|
+
pre.iplastic .Arguments {
|
13
|
+
font-style: italic;
|
14
|
+
}
|
15
|
+
pre.iplastic .TypeName {
|
16
|
+
font-weight: bold;
|
17
|
+
}
|
18
|
+
pre.iplastic .Identifier {
|
19
|
+
color: #9700CC;
|
20
|
+
}
|
21
|
+
pre.iplastic .Number {
|
22
|
+
color: #0066FF;
|
23
|
+
}
|
24
|
+
pre.iplastic .SectionName {
|
25
|
+
font-weight: bold;
|
26
|
+
}
|
27
|
+
pre.iplastic .Storage {
|
28
|
+
font-weight: bold;
|
29
|
+
}
|
30
|
+
pre.iplastic .line-numbers {
|
31
|
+
background-color: #BAD6FD;
|
32
|
+
color: #000000;
|
33
|
+
}
|
34
|
+
pre.iplastic {
|
35
|
+
background-color: #EEEEEE;
|
36
|
+
color: #000000;
|
37
|
+
}
|
38
|
+
pre.iplastic .FrameTitle {
|
39
|
+
font-weight: bold;
|
40
|
+
color: #000000;
|
41
|
+
}
|
42
|
+
pre.iplastic .TagName {
|
43
|
+
font-weight: bold;
|
44
|
+
}
|
45
|
+
pre.iplastic .Tag {
|
46
|
+
color: #0033CC;
|
47
|
+
}
|
48
|
+
pre.iplastic .Exception {
|
49
|
+
color: #990000;
|
50
|
+
}
|
51
|
+
pre.iplastic .XmlDeclaration {
|
52
|
+
color: #333333;
|
53
|
+
}
|
54
|
+
pre.iplastic .TrailingWhitespace {
|
55
|
+
background-color: #EEEEEE;
|
56
|
+
}
|
57
|
+
pre.iplastic .TagAttribute {
|
58
|
+
color: #3366CC;
|
59
|
+
font-style: italic;
|
60
|
+
}
|
61
|
+
pre.iplastic .Invalid {
|
62
|
+
background-color: #E7342D;
|
63
|
+
color: #FF0000;
|
64
|
+
}
|
65
|
+
pre.iplastic .Keyword {
|
66
|
+
color: #0000FF;
|
67
|
+
}
|
68
|
+
pre.iplastic .String {
|
69
|
+
color: #009933;
|
70
|
+
}
|
71
|
+
pre.iplastic .Comment {
|
72
|
+
color: #0066FF;
|
73
|
+
font-style: italic;
|
74
|
+
}
|
75
|
+
pre.iplastic .FunctionName {
|
76
|
+
color: #FF8000;
|
77
|
+
}
|
78
|
+
pre.iplastic .RegularExpression {
|
79
|
+
color: #FF0080;
|
80
|
+
}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
pre.lazy .OcamlInfixFPOperator {
|
2
|
+
text-decoration: underline;
|
3
|
+
}
|
4
|
+
pre.lazy .OcamlInfixOperator {
|
5
|
+
color: #3B5BB5;
|
6
|
+
}
|
7
|
+
pre.lazy .MetaFunctionCallPy {
|
8
|
+
color: #3E4558;
|
9
|
+
}
|
10
|
+
pre.lazy .Superclass {
|
11
|
+
color: #3B5BB5;
|
12
|
+
font-style: italic;
|
13
|
+
}
|
14
|
+
pre.lazy .LatexEntity {
|
15
|
+
color: #D62A28;
|
16
|
+
}
|
17
|
+
pre.lazy .Constant {
|
18
|
+
color: #3B5BB5;
|
19
|
+
}
|
20
|
+
pre.lazy .OcamlFPConstant {
|
21
|
+
text-decoration: underline;
|
22
|
+
}
|
23
|
+
pre.lazy .Support {
|
24
|
+
color: #3B5BB5;
|
25
|
+
}
|
26
|
+
pre.lazy .OcamlOperator {
|
27
|
+
color: #000000;
|
28
|
+
}
|
29
|
+
pre.lazy .line-numbers {
|
30
|
+
background-color: #E3FC8D;
|
31
|
+
color: #000000;
|
32
|
+
}
|
33
|
+
pre.lazy .StringInterpolation {
|
34
|
+
color: #671EBB;
|
35
|
+
}
|
36
|
+
pre.lazy .InvalidIllegal {
|
37
|
+
background-color: #9D1E15;
|
38
|
+
color: #F8F8F8;
|
39
|
+
}
|
40
|
+
pre.lazy .OcamlVariant {
|
41
|
+
color: #7F90AA;
|
42
|
+
}
|
43
|
+
pre.lazy .MetaTag {
|
44
|
+
color: #3A4A64;
|
45
|
+
}
|
46
|
+
pre.lazy .OcamlPrefixFPOperator {
|
47
|
+
text-decoration: underline;
|
48
|
+
}
|
49
|
+
pre.lazy .OcamlPrefixOperator {
|
50
|
+
color: #3B5BB5;
|
51
|
+
}
|
52
|
+
pre.lazy .String {
|
53
|
+
color: #409B1C;
|
54
|
+
}
|
55
|
+
pre.lazy .Keyword {
|
56
|
+
color: #FF7800;
|
57
|
+
}
|
58
|
+
pre.lazy {
|
59
|
+
background-color: #FFFFFF;
|
60
|
+
color: #000000;
|
61
|
+
}
|
62
|
+
pre.lazy .InvalidDeprecated {
|
63
|
+
color: #990000;
|
64
|
+
font-style: italic;
|
65
|
+
}
|
66
|
+
pre.lazy .Variable {
|
67
|
+
}
|
68
|
+
pre.lazy .Entity {
|
69
|
+
color: #3B5BB5;
|
70
|
+
}
|
71
|
+
pre.lazy .Comment {
|
72
|
+
color: #8C868F;
|
73
|
+
}
|
@@ -0,0 +1,123 @@
|
|
1
|
+
pre.mac_classic .EmbeddedSource {
|
2
|
+
background-color: #0C0C0C;
|
3
|
+
}
|
4
|
+
pre.mac_classic .LibraryObject {
|
5
|
+
font-weight: bold;
|
6
|
+
color: #6D79DE;
|
7
|
+
}
|
8
|
+
pre.mac_classic .Section {
|
9
|
+
font-style: italic;
|
10
|
+
}
|
11
|
+
pre.mac_classic .FunctionArgumentAndResultTypes {
|
12
|
+
color: #70727E;
|
13
|
+
}
|
14
|
+
pre.mac_classic .TypeName {
|
15
|
+
text-decoration: underline;
|
16
|
+
}
|
17
|
+
pre.mac_classic .Number {
|
18
|
+
color: #0000CD;
|
19
|
+
}
|
20
|
+
pre.mac_classic {
|
21
|
+
background-color: #FFFFFF;
|
22
|
+
color: #000000;
|
23
|
+
}
|
24
|
+
pre.mac_classic .MarkupList {
|
25
|
+
color: #B90690;
|
26
|
+
}
|
27
|
+
pre.mac_classic .MarkupTagAttribute {
|
28
|
+
font-style: italic;
|
29
|
+
}
|
30
|
+
pre.mac_classic .LibraryVariable {
|
31
|
+
font-weight: bold;
|
32
|
+
color: #21439C;
|
33
|
+
}
|
34
|
+
pre.mac_classic .line-numbers {
|
35
|
+
background-color: #4D97FF;
|
36
|
+
color: #000000;
|
37
|
+
}
|
38
|
+
pre.mac_classic .FunctionParameter {
|
39
|
+
font-style: italic;
|
40
|
+
}
|
41
|
+
pre.mac_classic .MarkupTag {
|
42
|
+
color: #1C02FF;
|
43
|
+
}
|
44
|
+
pre.mac_classic .MarkupHeading {
|
45
|
+
font-weight: bold;
|
46
|
+
color: #0C07FF;
|
47
|
+
}
|
48
|
+
pre.mac_classic .JsOperator {
|
49
|
+
color: #687687;
|
50
|
+
}
|
51
|
+
pre.mac_classic .InheritedClassName {
|
52
|
+
font-style: italic;
|
53
|
+
}
|
54
|
+
pre.mac_classic .StringInterpolation {
|
55
|
+
color: #26B31A;
|
56
|
+
}
|
57
|
+
pre.mac_classic .MarkupQuote {
|
58
|
+
color: #000000;
|
59
|
+
font-style: italic;
|
60
|
+
}
|
61
|
+
pre.mac_classic .MarkupNameOfTag {
|
62
|
+
font-weight: bold;
|
63
|
+
}
|
64
|
+
pre.mac_classic .InvalidTrailingWhitespace {
|
65
|
+
background-color: #FFD0D0;
|
66
|
+
}
|
67
|
+
pre.mac_classic .LibraryConstant {
|
68
|
+
font-weight: bold;
|
69
|
+
color: #06960E;
|
70
|
+
}
|
71
|
+
pre.mac_classic .MarkupXmlDeclaration {
|
72
|
+
color: #68685B;
|
73
|
+
}
|
74
|
+
pre.mac_classic .EmbeddedEmbeddedSource {
|
75
|
+
background-color: #0E0E0E;
|
76
|
+
}
|
77
|
+
pre.mac_classic .PreprocessorDirective {
|
78
|
+
font-weight: bold;
|
79
|
+
color: #0C450D;
|
80
|
+
}
|
81
|
+
pre.mac_classic .BuiltInConstant {
|
82
|
+
font-weight: bold;
|
83
|
+
color: #585CF6;
|
84
|
+
}
|
85
|
+
pre.mac_classic .MarkupDtd {
|
86
|
+
font-style: italic;
|
87
|
+
}
|
88
|
+
pre.mac_classic .Invalid {
|
89
|
+
background-color: #990000;
|
90
|
+
color: #FFFFFF;
|
91
|
+
}
|
92
|
+
pre.mac_classic .LibraryFunction {
|
93
|
+
font-weight: bold;
|
94
|
+
color: #3C4C72;
|
95
|
+
}
|
96
|
+
pre.mac_classic .String {
|
97
|
+
color: #036A07;
|
98
|
+
}
|
99
|
+
pre.mac_classic .UserDefinedConstant {
|
100
|
+
font-weight: bold;
|
101
|
+
color: #C5060B;
|
102
|
+
}
|
103
|
+
pre.mac_classic .Keyword {
|
104
|
+
font-weight: bold;
|
105
|
+
color: #0000FF;
|
106
|
+
}
|
107
|
+
pre.mac_classic .MarkupDoctype {
|
108
|
+
color: #888888;
|
109
|
+
}
|
110
|
+
pre.mac_classic .FunctionName {
|
111
|
+
font-weight: bold;
|
112
|
+
color: #0000A2;
|
113
|
+
}
|
114
|
+
pre.mac_classic .PreprocessorLine {
|
115
|
+
color: #1A921C;
|
116
|
+
}
|
117
|
+
pre.mac_classic .Variable {
|
118
|
+
color: #318495;
|
119
|
+
}
|
120
|
+
pre.mac_classic .Comment {
|
121
|
+
color: #0066FF;
|
122
|
+
font-style: italic;
|
123
|
+
}
|
@@ -0,0 +1,104 @@
|
|
1
|
+
pre.magicwb_amiga .MarkupQuoteEmail {
|
2
|
+
color: #00F0C9;
|
3
|
+
}
|
4
|
+
pre.magicwb_amiga .EmbeddedSource {
|
5
|
+
background-color: #8A9ECB;
|
6
|
+
}
|
7
|
+
pre.magicwb_amiga .InheritedClass {
|
8
|
+
font-style: italic;
|
9
|
+
}
|
10
|
+
pre.magicwb_amiga .TypeName {
|
11
|
+
text-decoration: underline;
|
12
|
+
}
|
13
|
+
pre.magicwb_amiga .Number {
|
14
|
+
color: #FFFFFF;
|
15
|
+
}
|
16
|
+
pre.magicwb_amiga .LibraryVariable {
|
17
|
+
color: #3A68A3;
|
18
|
+
}
|
19
|
+
pre.magicwb_amiga .Storage {
|
20
|
+
font-weight: bold;
|
21
|
+
color: #3A68A3;
|
22
|
+
}
|
23
|
+
pre.magicwb_amiga .line-numbers {
|
24
|
+
background-color: #B1B1B1;
|
25
|
+
color: #000000;
|
26
|
+
}
|
27
|
+
pre.magicwb_amiga .IncludeUser {
|
28
|
+
background-color: #969696;
|
29
|
+
color: #FFA995;
|
30
|
+
}
|
31
|
+
pre.magicwb_amiga .ObjectiveCMethodCall {
|
32
|
+
color: #000000;
|
33
|
+
}
|
34
|
+
pre.magicwb_amiga .ConstantUserDefined {
|
35
|
+
background-color: #1D1DEA;
|
36
|
+
color: #FFA995;
|
37
|
+
}
|
38
|
+
pre.magicwb_amiga .LibraryConstant {
|
39
|
+
color: #FFFFFF;
|
40
|
+
}
|
41
|
+
pre.magicwb_amiga .EntityName {
|
42
|
+
font-weight: bold;
|
43
|
+
color: #0000FF;
|
44
|
+
}
|
45
|
+
pre.magicwb_amiga .ConstantBuiltIn {
|
46
|
+
font-weight: bold;
|
47
|
+
color: #FFA995;
|
48
|
+
}
|
49
|
+
pre.magicwb_amiga .MarkupRaw {
|
50
|
+
background-color: #0000FF;
|
51
|
+
color: #FFFFFF;
|
52
|
+
}
|
53
|
+
pre.magicwb_amiga .MarkupListItem {
|
54
|
+
color: #4D4E60;
|
55
|
+
}
|
56
|
+
pre.magicwb_amiga .FunctionArgument {
|
57
|
+
font-style: italic;
|
58
|
+
}
|
59
|
+
pre.magicwb_amiga .ObjectiveCMethodCall1 {
|
60
|
+
font-style: italic;
|
61
|
+
}
|
62
|
+
pre.magicwb_amiga .MarkupQuoteDoubleEmail {
|
63
|
+
color: #4C457E;
|
64
|
+
}
|
65
|
+
pre.magicwb_amiga .IncludeSystem {
|
66
|
+
background-color: #969696;
|
67
|
+
color: #FFA995;
|
68
|
+
font-style: italic;
|
69
|
+
}
|
70
|
+
pre.magicwb_amiga .Invalid {
|
71
|
+
background-color: #797979;
|
72
|
+
color: #FFFFFF;
|
73
|
+
}
|
74
|
+
pre.magicwb_amiga .LibraryClassType {
|
75
|
+
color: #FFA995;
|
76
|
+
}
|
77
|
+
pre.magicwb_amiga .LibraryFunction {
|
78
|
+
color: #E5B3FF;
|
79
|
+
}
|
80
|
+
pre.magicwb_amiga .TagAttribute {
|
81
|
+
color: #3A68A3;
|
82
|
+
font-style: italic;
|
83
|
+
}
|
84
|
+
pre.magicwb_amiga .Keyword {
|
85
|
+
font-weight: bold;
|
86
|
+
}
|
87
|
+
pre.magicwb_amiga .String {
|
88
|
+
background-color: #EA1D1D;
|
89
|
+
color: #FFFFFF;
|
90
|
+
}
|
91
|
+
pre.magicwb_amiga {
|
92
|
+
background-color: #969696;
|
93
|
+
color: #000000;
|
94
|
+
}
|
95
|
+
pre.magicwb_amiga .FunctionName {
|
96
|
+
color: #FFA995;
|
97
|
+
}
|
98
|
+
pre.magicwb_amiga .Variable {
|
99
|
+
color: #FFA995;
|
100
|
+
}
|
101
|
+
pre.magicwb_amiga .Comment {
|
102
|
+
color: #8D2E75;
|
103
|
+
font-style: italic;
|
104
|
+
}
|
@@ -0,0 +1,188 @@
|
|
1
|
+
pre.pastels_on_dark .CssPropertyColours {
|
2
|
+
color: #666633;
|
3
|
+
}
|
4
|
+
pre.pastels_on_dark .CssPropertyValue {
|
5
|
+
color: #9B2E4D;
|
6
|
+
}
|
7
|
+
pre.pastels_on_dark .HtmlDocinfoDtd {
|
8
|
+
font-style: italic;
|
9
|
+
}
|
10
|
+
pre.pastels_on_dark .Exceptions {
|
11
|
+
font-weight: bold;
|
12
|
+
color: #C82255;
|
13
|
+
}
|
14
|
+
pre.pastels_on_dark .ClassInheritance {
|
15
|
+
font-style: italic;
|
16
|
+
}
|
17
|
+
pre.pastels_on_dark .CssInvalidComma {
|
18
|
+
background-color: #FF0000;
|
19
|
+
color: #FFFFFF;
|
20
|
+
}
|
21
|
+
pre.pastels_on_dark .HtmlTag {
|
22
|
+
color: #858EF4;
|
23
|
+
}
|
24
|
+
pre.pastels_on_dark .Constants {
|
25
|
+
color: #6782D3;
|
26
|
+
}
|
27
|
+
pre.pastels_on_dark .Section {
|
28
|
+
font-style: italic;
|
29
|
+
}
|
30
|
+
pre.pastels_on_dark .PhpPhpdocs {
|
31
|
+
color: #777777;
|
32
|
+
}
|
33
|
+
pre.pastels_on_dark .Variables {
|
34
|
+
color: #C1C144;
|
35
|
+
}
|
36
|
+
pre.pastels_on_dark .RegularExpressions {
|
37
|
+
color: #666666;
|
38
|
+
}
|
39
|
+
pre.pastels_on_dark .Comments {
|
40
|
+
color: #555555;
|
41
|
+
}
|
42
|
+
pre.pastels_on_dark .line-numbers {
|
43
|
+
background-color: #73597E;
|
44
|
+
color: #FFFFFF;
|
45
|
+
}
|
46
|
+
pre.pastels_on_dark .PhpVariablesGlobals {
|
47
|
+
color: #B72E1D;
|
48
|
+
}
|
49
|
+
pre.pastels_on_dark .PhpConstantsCorePredefined {
|
50
|
+
font-weight: bold;
|
51
|
+
color: #DE8E20;
|
52
|
+
}
|
53
|
+
pre.pastels_on_dark .HtmlDoctype {
|
54
|
+
color: #888888;
|
55
|
+
}
|
56
|
+
pre.pastels_on_dark .HtmlDocinfoXml {
|
57
|
+
color: #68685B;
|
58
|
+
}
|
59
|
+
pre.pastels_on_dark .AttributeName {
|
60
|
+
color: #9B456F;
|
61
|
+
}
|
62
|
+
pre.pastels_on_dark .ClassName {
|
63
|
+
text-decoration: underline;
|
64
|
+
}
|
65
|
+
pre.pastels_on_dark .FunctionArgumentName {
|
66
|
+
font-weight: bold;
|
67
|
+
}
|
68
|
+
pre.pastels_on_dark .FunctionResult {
|
69
|
+
color: #0000FF;
|
70
|
+
}
|
71
|
+
pre.pastels_on_dark .TmlangdefKeys {
|
72
|
+
color: #7171F3;
|
73
|
+
}
|
74
|
+
pre.pastels_on_dark .CssSelectorsElements {
|
75
|
+
font-weight: bold;
|
76
|
+
color: #B8CD06;
|
77
|
+
}
|
78
|
+
pre.pastels_on_dark .CssSelectorsId {
|
79
|
+
color: #EC9E00;
|
80
|
+
}
|
81
|
+
pre.pastels_on_dark .ControlStructures {
|
82
|
+
font-weight: bold;
|
83
|
+
color: #6969FA;
|
84
|
+
}
|
85
|
+
pre.pastels_on_dark .Interpolation {
|
86
|
+
color: #C10006;
|
87
|
+
}
|
88
|
+
pre.pastels_on_dark .CommentsBlock {
|
89
|
+
color: #555555;
|
90
|
+
}
|
91
|
+
pre.pastels_on_dark .CssSelectorsPseudoclass {
|
92
|
+
color: #2E759C;
|
93
|
+
}
|
94
|
+
pre.pastels_on_dark .Operators {
|
95
|
+
color: #47B8D6;
|
96
|
+
}
|
97
|
+
pre.pastels_on_dark .TagName {
|
98
|
+
color: #858EF4;
|
99
|
+
}
|
100
|
+
pre.pastels_on_dark .EmbeddedCode {
|
101
|
+
text-decoration: underline;
|
102
|
+
}
|
103
|
+
pre.pastels_on_dark .PhpVariablesSaferGlobals {
|
104
|
+
color: #00FF00;
|
105
|
+
}
|
106
|
+
pre.pastels_on_dark .InvalidTrailingWhitespace {
|
107
|
+
background-color: #FFD0D0;
|
108
|
+
}
|
109
|
+
pre.pastels_on_dark .Functions {
|
110
|
+
color: #A1A1FF;
|
111
|
+
}
|
112
|
+
pre.pastels_on_dark .Keywords {
|
113
|
+
color: #A1A1FF;
|
114
|
+
}
|
115
|
+
pre.pastels_on_dark {
|
116
|
+
background-color: #211E1E;
|
117
|
+
color: #DADADA;
|
118
|
+
}
|
119
|
+
pre.pastels_on_dark .PhpKeywordsStorage {
|
120
|
+
color: #6969FA;
|
121
|
+
}
|
122
|
+
pre.pastels_on_dark .PhpIncludeRequire {
|
123
|
+
color: #C82255;
|
124
|
+
}
|
125
|
+
pre.pastels_on_dark .HtmlAttribute {
|
126
|
+
color: #9B456F;
|
127
|
+
}
|
128
|
+
pre.pastels_on_dark .AttributeWithValue {
|
129
|
+
color: #9B456F;
|
130
|
+
}
|
131
|
+
pre.pastels_on_dark .FunctionArgumentType {
|
132
|
+
color: #0000FF;
|
133
|
+
}
|
134
|
+
pre.pastels_on_dark .PreprocessorDirective {
|
135
|
+
font-weight: bold;
|
136
|
+
}
|
137
|
+
pre.pastels_on_dark .CssUnits {
|
138
|
+
color: #6969FA;
|
139
|
+
}
|
140
|
+
pre.pastels_on_dark .CssFontNames {
|
141
|
+
color: #666633;
|
142
|
+
}
|
143
|
+
pre.pastels_on_dark .CssSelectorsClassname {
|
144
|
+
color: #EDCA06;
|
145
|
+
}
|
146
|
+
pre.pastels_on_dark .PhpStringsSingleQuoted {
|
147
|
+
color: #BFA36D;
|
148
|
+
}
|
149
|
+
pre.pastels_on_dark .PhpConstantsStandardPredefined {
|
150
|
+
font-weight: bold;
|
151
|
+
color: #DE8E10;
|
152
|
+
}
|
153
|
+
pre.pastels_on_dark .HtmlServersideIncludes {
|
154
|
+
color: #909090;
|
155
|
+
}
|
156
|
+
pre.pastels_on_dark .CssPropertyKeyword {
|
157
|
+
color: #E1C96B;
|
158
|
+
}
|
159
|
+
pre.pastels_on_dark .LanguageConstants {
|
160
|
+
font-weight: bold;
|
161
|
+
color: #DE8E30;
|
162
|
+
}
|
163
|
+
pre.pastels_on_dark .CharacterConstants {
|
164
|
+
color: #AFA472;
|
165
|
+
}
|
166
|
+
pre.pastels_on_dark .Invalid {
|
167
|
+
font-weight: bold;
|
168
|
+
background-color: #FF0000;
|
169
|
+
color: #FFF9F9;
|
170
|
+
}
|
171
|
+
pre.pastels_on_dark .FunctionArgumentVariable {
|
172
|
+
font-style: italic;
|
173
|
+
}
|
174
|
+
pre.pastels_on_dark .Strings {
|
175
|
+
color: #AD9361;
|
176
|
+
}
|
177
|
+
pre.pastels_on_dark .PhpStringsDoubleQuoted {
|
178
|
+
color: #AD9361;
|
179
|
+
}
|
180
|
+
pre.pastels_on_dark .FunctionName {
|
181
|
+
font-weight: bold;
|
182
|
+
}
|
183
|
+
pre.pastels_on_dark .PreprocessorLine {
|
184
|
+
color: #2F006E;
|
185
|
+
}
|
186
|
+
pre.pastels_on_dark .Numbers {
|
187
|
+
color: #CCCCCC;
|
188
|
+
}
|