amp 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/.hgignore +26 -0
- data/AUTHORS +2 -0
- data/History.txt +6 -0
- data/LICENSE +37 -0
- data/MANIFESTO +7 -0
- data/Manifest.txt +294 -0
- data/README.md +129 -0
- data/Rakefile +102 -0
- data/SCHEDULE.markdown +12 -0
- data/STYLE +27 -0
- data/TODO.markdown +149 -0
- data/ampfile.rb +47 -0
- data/bin/amp +30 -0
- data/bin/amp1.9 +30 -0
- data/ext/amp/bz2/README.txt +39 -0
- data/ext/amp/bz2/bz2.c +1582 -0
- data/ext/amp/bz2/extconf.rb +77 -0
- data/ext/amp/bz2/mkmf.log +29 -0
- data/ext/amp/mercurial_patch/extconf.rb +5 -0
- data/ext/amp/mercurial_patch/mpatch.c +405 -0
- data/ext/amp/priority_queue/extconf.rb +5 -0
- data/ext/amp/priority_queue/priority_queue.c +947 -0
- data/ext/amp/support/extconf.rb +5 -0
- data/ext/amp/support/support.c +250 -0
- data/lib/amp.rb +200 -0
- data/lib/amp/commands/command.rb +507 -0
- data/lib/amp/commands/command_support.rb +137 -0
- data/lib/amp/commands/commands/config.rb +143 -0
- data/lib/amp/commands/commands/help.rb +29 -0
- data/lib/amp/commands/commands/init.rb +10 -0
- data/lib/amp/commands/commands/templates.rb +137 -0
- data/lib/amp/commands/commands/version.rb +7 -0
- data/lib/amp/commands/commands/workflow.rb +28 -0
- data/lib/amp/commands/commands/workflows/git/add.rb +65 -0
- data/lib/amp/commands/commands/workflows/git/copy.rb +27 -0
- data/lib/amp/commands/commands/workflows/git/mv.rb +23 -0
- data/lib/amp/commands/commands/workflows/git/rm.rb +60 -0
- data/lib/amp/commands/commands/workflows/hg/add.rb +53 -0
- data/lib/amp/commands/commands/workflows/hg/addremove.rb +86 -0
- data/lib/amp/commands/commands/workflows/hg/annotate.rb +46 -0
- data/lib/amp/commands/commands/workflows/hg/archive.rb +126 -0
- data/lib/amp/commands/commands/workflows/hg/branch.rb +28 -0
- data/lib/amp/commands/commands/workflows/hg/branches.rb +30 -0
- data/lib/amp/commands/commands/workflows/hg/bundle.rb +115 -0
- data/lib/amp/commands/commands/workflows/hg/clone.rb +95 -0
- data/lib/amp/commands/commands/workflows/hg/commit.rb +42 -0
- data/lib/amp/commands/commands/workflows/hg/copy.rb +31 -0
- data/lib/amp/commands/commands/workflows/hg/debug/dirstate.rb +32 -0
- data/lib/amp/commands/commands/workflows/hg/debug/index.rb +36 -0
- data/lib/amp/commands/commands/workflows/hg/default.rb +9 -0
- data/lib/amp/commands/commands/workflows/hg/diff.rb +30 -0
- data/lib/amp/commands/commands/workflows/hg/forget.rb +11 -0
- data/lib/amp/commands/commands/workflows/hg/heads.rb +25 -0
- data/lib/amp/commands/commands/workflows/hg/identify.rb +23 -0
- data/lib/amp/commands/commands/workflows/hg/import.rb +135 -0
- data/lib/amp/commands/commands/workflows/hg/incoming.rb +85 -0
- data/lib/amp/commands/commands/workflows/hg/info.rb +18 -0
- data/lib/amp/commands/commands/workflows/hg/log.rb +21 -0
- data/lib/amp/commands/commands/workflows/hg/manifest.rb +13 -0
- data/lib/amp/commands/commands/workflows/hg/merge.rb +53 -0
- data/lib/amp/commands/commands/workflows/hg/move.rb +28 -0
- data/lib/amp/commands/commands/workflows/hg/outgoing.rb +61 -0
- data/lib/amp/commands/commands/workflows/hg/pull.rb +74 -0
- data/lib/amp/commands/commands/workflows/hg/push.rb +20 -0
- data/lib/amp/commands/commands/workflows/hg/remove.rb +45 -0
- data/lib/amp/commands/commands/workflows/hg/resolve.rb +83 -0
- data/lib/amp/commands/commands/workflows/hg/revert.rb +53 -0
- data/lib/amp/commands/commands/workflows/hg/root.rb +13 -0
- data/lib/amp/commands/commands/workflows/hg/serve.rb +38 -0
- data/lib/amp/commands/commands/workflows/hg/status.rb +116 -0
- data/lib/amp/commands/commands/workflows/hg/tag.rb +69 -0
- data/lib/amp/commands/commands/workflows/hg/tags.rb +27 -0
- data/lib/amp/commands/commands/workflows/hg/tip.rb +13 -0
- data/lib/amp/commands/commands/workflows/hg/update.rb +27 -0
- data/lib/amp/commands/commands/workflows/hg/verify.rb +9 -0
- data/lib/amp/commands/commands/workflows/hg/view.rb +36 -0
- data/lib/amp/commands/dispatch.rb +181 -0
- data/lib/amp/commands/hooks.rb +81 -0
- data/lib/amp/dependencies/amp_support.rb +1 -0
- data/lib/amp/dependencies/amp_support/ruby_amp_support.rb +103 -0
- data/lib/amp/dependencies/minitar.rb +979 -0
- data/lib/amp/dependencies/priority_queue.rb +18 -0
- data/lib/amp/dependencies/priority_queue/c_priority_queue.rb +1 -0
- data/lib/amp/dependencies/priority_queue/poor_priority_queue.rb +46 -0
- data/lib/amp/dependencies/priority_queue/ruby_priority_queue.rb +525 -0
- data/lib/amp/dependencies/python_config.rb +211 -0
- data/lib/amp/dependencies/trollop.rb +713 -0
- data/lib/amp/dependencies/zip/ioextras.rb +155 -0
- data/lib/amp/dependencies/zip/stdrubyext.rb +111 -0
- data/lib/amp/dependencies/zip/tempfile_bugfixed.rb +186 -0
- data/lib/amp/dependencies/zip/zip.rb +1850 -0
- data/lib/amp/dependencies/zip/zipfilesystem.rb +609 -0
- data/lib/amp/dependencies/zip/ziprequire.rb +90 -0
- data/lib/amp/encoding/base85.rb +97 -0
- data/lib/amp/encoding/binary_diff.rb +82 -0
- data/lib/amp/encoding/difflib.rb +166 -0
- data/lib/amp/encoding/mercurial_diff.rb +378 -0
- data/lib/amp/encoding/mercurial_patch.rb +1 -0
- data/lib/amp/encoding/patch.rb +292 -0
- data/lib/amp/encoding/pure_ruby/ruby_mercurial_patch.rb +123 -0
- data/lib/amp/extensions/ditz.rb +41 -0
- data/lib/amp/extensions/lighthouse.rb +167 -0
- data/lib/amp/graphs/ancestor.rb +147 -0
- data/lib/amp/graphs/copies.rb +261 -0
- data/lib/amp/merges/merge_state.rb +164 -0
- data/lib/amp/merges/merge_ui.rb +322 -0
- data/lib/amp/merges/simple_merge.rb +450 -0
- data/lib/amp/profiling_hacks.rb +36 -0
- data/lib/amp/repository/branch_manager.rb +234 -0
- data/lib/amp/repository/dir_state.rb +950 -0
- data/lib/amp/repository/journal.rb +203 -0
- data/lib/amp/repository/lock.rb +207 -0
- data/lib/amp/repository/repositories/bundle_repository.rb +214 -0
- data/lib/amp/repository/repositories/http_repository.rb +377 -0
- data/lib/amp/repository/repositories/local_repository.rb +2661 -0
- data/lib/amp/repository/repository.rb +94 -0
- data/lib/amp/repository/store.rb +485 -0
- data/lib/amp/repository/tag_manager.rb +319 -0
- data/lib/amp/repository/updatable.rb +532 -0
- data/lib/amp/repository/verification.rb +431 -0
- data/lib/amp/repository/versioned_file.rb +475 -0
- data/lib/amp/revlogs/bundle_revlogs.rb +246 -0
- data/lib/amp/revlogs/changegroup.rb +217 -0
- data/lib/amp/revlogs/changelog.rb +338 -0
- data/lib/amp/revlogs/changeset.rb +521 -0
- data/lib/amp/revlogs/file_log.rb +165 -0
- data/lib/amp/revlogs/index.rb +493 -0
- data/lib/amp/revlogs/manifest.rb +195 -0
- data/lib/amp/revlogs/node.rb +18 -0
- data/lib/amp/revlogs/revlog.rb +1032 -0
- data/lib/amp/revlogs/revlog_support.rb +126 -0
- data/lib/amp/server/amp_user.rb +44 -0
- data/lib/amp/server/extension/amp_extension.rb +396 -0
- data/lib/amp/server/extension/authorization.rb +201 -0
- data/lib/amp/server/fancy_http_server.rb +252 -0
- data/lib/amp/server/fancy_views/_browser.haml +28 -0
- data/lib/amp/server/fancy_views/_diff_file.haml +13 -0
- data/lib/amp/server/fancy_views/_navbar.haml +17 -0
- data/lib/amp/server/fancy_views/changeset.haml +31 -0
- data/lib/amp/server/fancy_views/commits.haml +32 -0
- data/lib/amp/server/fancy_views/file.haml +35 -0
- data/lib/amp/server/fancy_views/file_diff.haml +23 -0
- data/lib/amp/server/fancy_views/harshcss/all_hallows_eve.css +72 -0
- data/lib/amp/server/fancy_views/harshcss/amy.css +147 -0
- data/lib/amp/server/fancy_views/harshcss/twilight.css +138 -0
- data/lib/amp/server/fancy_views/stylesheet.sass +175 -0
- data/lib/amp/server/http_server.rb +140 -0
- data/lib/amp/server/repo_user_management.rb +287 -0
- data/lib/amp/support/amp_config.rb +164 -0
- data/lib/amp/support/amp_ui.rb +287 -0
- data/lib/amp/support/docs.rb +54 -0
- data/lib/amp/support/generator.rb +78 -0
- data/lib/amp/support/ignore.rb +144 -0
- data/lib/amp/support/loaders.rb +93 -0
- data/lib/amp/support/logger.rb +103 -0
- data/lib/amp/support/match.rb +151 -0
- data/lib/amp/support/multi_io.rb +87 -0
- data/lib/amp/support/openers.rb +121 -0
- data/lib/amp/support/ruby_19_compatibility.rb +66 -0
- data/lib/amp/support/support.rb +1095 -0
- data/lib/amp/templates/blank.commit.erb +23 -0
- data/lib/amp/templates/blank.log.erb +18 -0
- data/lib/amp/templates/default.commit.erb +23 -0
- data/lib/amp/templates/default.log.erb +26 -0
- data/lib/amp/templates/template.rb +165 -0
- data/site/Rakefile +24 -0
- data/site/src/about/ampfile.haml +57 -0
- data/site/src/about/commands.haml +106 -0
- data/site/src/about/index.haml +33 -0
- data/site/src/about/performance.haml +31 -0
- data/site/src/about/workflows.haml +34 -0
- data/site/src/contribute/index.haml +65 -0
- data/site/src/contribute/style.haml +297 -0
- data/site/src/css/active4d.css +114 -0
- data/site/src/css/all_hallows_eve.css +72 -0
- data/site/src/css/all_themes.css +3299 -0
- data/site/src/css/amp.css +260 -0
- data/site/src/css/amy.css +147 -0
- data/site/src/css/blackboard.css +88 -0
- data/site/src/css/brilliance_black.css +605 -0
- data/site/src/css/brilliance_dull.css +599 -0
- data/site/src/css/cobalt.css +149 -0
- data/site/src/css/cur_amp.css +185 -0
- data/site/src/css/dawn.css +121 -0
- data/site/src/css/eiffel.css +121 -0
- data/site/src/css/espresso_libre.css +109 -0
- data/site/src/css/idle.css +62 -0
- data/site/src/css/iplastic.css +80 -0
- data/site/src/css/lazy.css +73 -0
- data/site/src/css/mac_classic.css +123 -0
- data/site/src/css/magicwb_amiga.css +104 -0
- data/site/src/css/pastels_on_dark.css +188 -0
- data/site/src/css/reset.css +55 -0
- data/site/src/css/slush_poppies.css +85 -0
- data/site/src/css/spacecadet.css +51 -0
- data/site/src/css/sunburst.css +180 -0
- data/site/src/css/twilight.css +137 -0
- data/site/src/css/zenburnesque.css +91 -0
- data/site/src/get/index.haml +32 -0
- data/site/src/helpers.rb +121 -0
- data/site/src/images/amp_logo.png +0 -0
- data/site/src/images/carbonica.png +0 -0
- data/site/src/images/revolution.png +0 -0
- data/site/src/images/tab-bg.png +0 -0
- data/site/src/images/tab-sliding-left.png +0 -0
- data/site/src/images/tab-sliding-right.png +0 -0
- data/site/src/include/_footer.haml +22 -0
- data/site/src/include/_header.haml +17 -0
- data/site/src/index.haml +104 -0
- data/site/src/learn/index.haml +46 -0
- data/site/src/scripts/jquery-1.3.2.min.js +19 -0
- data/site/src/scripts/jquery.cookie.js +96 -0
- data/tasks/stats.rake +155 -0
- data/tasks/yard.rake +171 -0
- data/test/dirstate_tests/dirstate +0 -0
- data/test/dirstate_tests/hgrc +5 -0
- data/test/dirstate_tests/test_dir_state.rb +192 -0
- data/test/functional_tests/resources/.hgignore +2 -0
- data/test/functional_tests/resources/STYLE.txt +25 -0
- data/test/functional_tests/resources/command.rb +372 -0
- data/test/functional_tests/resources/commands/annotate.rb +57 -0
- data/test/functional_tests/resources/commands/experimental/lolcats.rb +17 -0
- data/test/functional_tests/resources/commands/heads.rb +22 -0
- data/test/functional_tests/resources/commands/manifest.rb +12 -0
- data/test/functional_tests/resources/commands/status.rb +90 -0
- data/test/functional_tests/resources/version2/.hgignore +5 -0
- data/test/functional_tests/resources/version2/STYLE.txt +25 -0
- data/test/functional_tests/resources/version2/command.rb +372 -0
- data/test/functional_tests/resources/version2/commands/annotate.rb +45 -0
- data/test/functional_tests/resources/version2/commands/experimental/lolcats.rb +17 -0
- data/test/functional_tests/resources/version2/commands/heads.rb +22 -0
- data/test/functional_tests/resources/version2/commands/manifest.rb +12 -0
- data/test/functional_tests/resources/version2/commands/status.rb +90 -0
- data/test/functional_tests/resources/version3/.hgignore +5 -0
- data/test/functional_tests/resources/version3/STYLE.txt +31 -0
- data/test/functional_tests/resources/version3/command.rb +376 -0
- data/test/functional_tests/resources/version3/commands/annotate.rb +45 -0
- data/test/functional_tests/resources/version3/commands/experimental/lolcats.rb +17 -0
- data/test/functional_tests/resources/version3/commands/heads.rb +22 -0
- data/test/functional_tests/resources/version3/commands/manifest.rb +12 -0
- data/test/functional_tests/resources/version3/commands/status.rb +90 -0
- data/test/functional_tests/resources/version4/.hgignore +5 -0
- data/test/functional_tests/resources/version4/STYLE.txt +31 -0
- data/test/functional_tests/resources/version4/command.rb +376 -0
- data/test/functional_tests/resources/version4/commands/experimental/lolcats.rb +17 -0
- data/test/functional_tests/resources/version4/commands/heads.rb +22 -0
- data/test/functional_tests/resources/version4/commands/manifest.rb +12 -0
- data/test/functional_tests/resources/version4/commands/stats.rb +25 -0
- data/test/functional_tests/resources/version4/commands/status.rb +90 -0
- data/test/functional_tests/resources/version5_1/.hgignore +5 -0
- data/test/functional_tests/resources/version5_1/STYLE.txt +2 -0
- data/test/functional_tests/resources/version5_1/command.rb +374 -0
- data/test/functional_tests/resources/version5_1/commands/experimental/lolcats.rb +17 -0
- data/test/functional_tests/resources/version5_1/commands/heads.rb +22 -0
- data/test/functional_tests/resources/version5_1/commands/manifest.rb +12 -0
- data/test/functional_tests/resources/version5_1/commands/stats.rb +25 -0
- data/test/functional_tests/resources/version5_1/commands/status.rb +90 -0
- data/test/functional_tests/resources/version5_2/.hgignore +5 -0
- data/test/functional_tests/resources/version5_2/STYLE.txt +14 -0
- data/test/functional_tests/resources/version5_2/command.rb +376 -0
- data/test/functional_tests/resources/version5_2/commands/experimental/lolcats.rb +17 -0
- data/test/functional_tests/resources/version5_2/commands/manifest.rb +12 -0
- data/test/functional_tests/resources/version5_2/commands/newz.rb +12 -0
- data/test/functional_tests/resources/version5_2/commands/stats.rb +25 -0
- data/test/functional_tests/resources/version5_2/commands/status.rb +90 -0
- data/test/functional_tests/test_functional.rb +604 -0
- data/test/localrepo_tests/test_local_repo.rb +121 -0
- data/test/localrepo_tests/testrepo.tar.gz +0 -0
- data/test/manifest_tests/00manifest.i +0 -0
- data/test/manifest_tests/test_manifest.rb +72 -0
- data/test/merge_tests/base.txt +10 -0
- data/test/merge_tests/expected.local.txt +16 -0
- data/test/merge_tests/local.txt +11 -0
- data/test/merge_tests/remote.txt +11 -0
- data/test/merge_tests/test_merge.rb +26 -0
- data/test/revlog_tests/00changelog.i +0 -0
- data/test/revlog_tests/revision_added_changelog.i +0 -0
- data/test/revlog_tests/test_adding_index.i +0 -0
- data/test/revlog_tests/test_revlog.rb +333 -0
- data/test/revlog_tests/testindex.i +0 -0
- data/test/store_tests/store.tar.gz +0 -0
- data/test/store_tests/test_fncache_store.rb +122 -0
- data/test/test_amp.rb +9 -0
- data/test/test_base85.rb +14 -0
- data/test/test_bdiff.rb +42 -0
- data/test/test_commands.rb +122 -0
- data/test/test_difflib.rb +50 -0
- data/test/test_helper.rb +15 -0
- data/test/test_journal.rb +29 -0
- data/test/test_match.rb +134 -0
- data/test/test_mdiff.rb +74 -0
- data/test/test_mpatch.rb +14 -0
- data/test/test_support.rb +24 -0
- metadata +385 -0
@@ -0,0 +1,114 @@
|
|
1
|
+
pre.active4d .DiffHeader {
|
2
|
+
background-color: #656565;
|
3
|
+
color: #FFFFFF;
|
4
|
+
}
|
5
|
+
pre.active4d .Operator {
|
6
|
+
}
|
7
|
+
pre.active4d .InheritedClass {
|
8
|
+
}
|
9
|
+
pre.active4d .TypeName {
|
10
|
+
color: #21439C;
|
11
|
+
}
|
12
|
+
pre.active4d .Number {
|
13
|
+
color: #A8017E;
|
14
|
+
}
|
15
|
+
pre.active4d .EmbeddedSource {
|
16
|
+
background-color: #ECF1FF;
|
17
|
+
}
|
18
|
+
pre.active4d {
|
19
|
+
background-color: #FFFFFF;
|
20
|
+
color: #000000;
|
21
|
+
}
|
22
|
+
pre.active4d .DiffInsertedLine {
|
23
|
+
background-color: #98FF9A;
|
24
|
+
color: #000000;
|
25
|
+
}
|
26
|
+
pre.active4d .LibraryVariable {
|
27
|
+
color: #A535AE;
|
28
|
+
}
|
29
|
+
pre.active4d .Storage {
|
30
|
+
color: #FF5600;
|
31
|
+
}
|
32
|
+
pre.active4d .InterpolatedEntity {
|
33
|
+
font-weight: bold;
|
34
|
+
color: #66CCFF;
|
35
|
+
}
|
36
|
+
pre.active4d .line-numbers {
|
37
|
+
background-color: #BAD6FD;
|
38
|
+
color: #000000;
|
39
|
+
}
|
40
|
+
pre.active4d .LocalVariable {
|
41
|
+
font-weight: bold;
|
42
|
+
color: #6392FF;
|
43
|
+
}
|
44
|
+
pre.active4d .DiffLineRange {
|
45
|
+
background-color: #1B63FF;
|
46
|
+
color: #FFFFFF;
|
47
|
+
}
|
48
|
+
pre.active4d .BlockComment {
|
49
|
+
color: #D33435;
|
50
|
+
}
|
51
|
+
pre.active4d .TagName {
|
52
|
+
color: #016CFF;
|
53
|
+
}
|
54
|
+
pre.active4d .FunctionArgument {
|
55
|
+
}
|
56
|
+
pre.active4d .BuiltInConstant {
|
57
|
+
color: #A535AE;
|
58
|
+
}
|
59
|
+
pre.active4d .LineComment {
|
60
|
+
color: #D33535;
|
61
|
+
}
|
62
|
+
pre.active4d .DiffDeletedLine {
|
63
|
+
background-color: #FF7880;
|
64
|
+
color: #000000;
|
65
|
+
}
|
66
|
+
pre.active4d .NamedConstant {
|
67
|
+
color: #B7734C;
|
68
|
+
}
|
69
|
+
pre.active4d .CommandMethod {
|
70
|
+
font-weight: bold;
|
71
|
+
color: #45AE34;
|
72
|
+
}
|
73
|
+
pre.active4d .TableField {
|
74
|
+
color: #0BB600;
|
75
|
+
}
|
76
|
+
pre.active4d .PlainXmlText {
|
77
|
+
color: #000000;
|
78
|
+
}
|
79
|
+
pre.active4d .Invalid {
|
80
|
+
background-color: #990000;
|
81
|
+
color: #FFFFFF;
|
82
|
+
}
|
83
|
+
pre.active4d .LibraryClassType {
|
84
|
+
color: #A535AE;
|
85
|
+
}
|
86
|
+
pre.active4d .TagAttribute {
|
87
|
+
color: #963DFF;
|
88
|
+
}
|
89
|
+
pre.active4d .Keyword {
|
90
|
+
font-weight: bold;
|
91
|
+
color: #006699;
|
92
|
+
}
|
93
|
+
pre.active4d .UserDefinedConstant {
|
94
|
+
}
|
95
|
+
pre.active4d .String {
|
96
|
+
color: #666666;
|
97
|
+
}
|
98
|
+
pre.active4d .DiffUnchangedLine {
|
99
|
+
color: #5E5E5E;
|
100
|
+
}
|
101
|
+
pre.active4d .TagContainer {
|
102
|
+
color: #7A7A7A;
|
103
|
+
}
|
104
|
+
pre.active4d .FunctionName {
|
105
|
+
color: #21439C;
|
106
|
+
}
|
107
|
+
pre.active4d .Variable {
|
108
|
+
font-weight: bold;
|
109
|
+
color: #0053FF;
|
110
|
+
}
|
111
|
+
pre.active4d .DateTimeLiteral {
|
112
|
+
font-weight: bold;
|
113
|
+
color: #66CCFF;
|
114
|
+
}
|
@@ -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: #73597E;
|
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,3299 @@
|
|
1
|
+
pre.active4d .DiffHeader {
|
2
|
+
background-color: #656565;
|
3
|
+
color: #FFFFFF;
|
4
|
+
}
|
5
|
+
pre.active4d .Operator {
|
6
|
+
}
|
7
|
+
pre.active4d .InheritedClass {
|
8
|
+
}
|
9
|
+
pre.active4d .TypeName {
|
10
|
+
color: #21439C;
|
11
|
+
}
|
12
|
+
pre.active4d .Number {
|
13
|
+
color: #A8017E;
|
14
|
+
}
|
15
|
+
pre.active4d .EmbeddedSource {
|
16
|
+
background-color: #ECF1FF;
|
17
|
+
}
|
18
|
+
pre.active4d {
|
19
|
+
background-color: #FFFFFF;
|
20
|
+
color: #000000;
|
21
|
+
}
|
22
|
+
pre.active4d .DiffInsertedLine {
|
23
|
+
background-color: #98FF9A;
|
24
|
+
color: #000000;
|
25
|
+
}
|
26
|
+
pre.active4d .LibraryVariable {
|
27
|
+
color: #A535AE;
|
28
|
+
}
|
29
|
+
pre.active4d .Storage {
|
30
|
+
color: #FF5600;
|
31
|
+
}
|
32
|
+
pre.active4d .InterpolatedEntity {
|
33
|
+
font-weight: bold;
|
34
|
+
color: #66CCFF;
|
35
|
+
}
|
36
|
+
pre.active4d .line-numbers {
|
37
|
+
background-color: #BAD6FD;
|
38
|
+
color: #000000;
|
39
|
+
}
|
40
|
+
pre.active4d .LocalVariable {
|
41
|
+
font-weight: bold;
|
42
|
+
color: #6392FF;
|
43
|
+
}
|
44
|
+
pre.active4d .DiffLineRange {
|
45
|
+
background-color: #1B63FF;
|
46
|
+
color: #FFFFFF;
|
47
|
+
}
|
48
|
+
pre.active4d .BlockComment {
|
49
|
+
color: #D33435;
|
50
|
+
}
|
51
|
+
pre.active4d .TagName {
|
52
|
+
color: #016CFF;
|
53
|
+
}
|
54
|
+
pre.active4d .FunctionArgument {
|
55
|
+
}
|
56
|
+
pre.active4d .BuiltInConstant {
|
57
|
+
color: #A535AE;
|
58
|
+
}
|
59
|
+
pre.active4d .LineComment {
|
60
|
+
color: #D33535;
|
61
|
+
}
|
62
|
+
pre.active4d .DiffDeletedLine {
|
63
|
+
background-color: #FF7880;
|
64
|
+
color: #000000;
|
65
|
+
}
|
66
|
+
pre.active4d .NamedConstant {
|
67
|
+
color: #B7734C;
|
68
|
+
}
|
69
|
+
pre.active4d .CommandMethod {
|
70
|
+
font-weight: bold;
|
71
|
+
color: #45AE34;
|
72
|
+
}
|
73
|
+
pre.active4d .TableField {
|
74
|
+
color: #0BB600;
|
75
|
+
}
|
76
|
+
pre.active4d .PlainXmlText {
|
77
|
+
color: #000000;
|
78
|
+
}
|
79
|
+
pre.active4d .Invalid {
|
80
|
+
background-color: #990000;
|
81
|
+
color: #FFFFFF;
|
82
|
+
}
|
83
|
+
pre.active4d .LibraryClassType {
|
84
|
+
color: #A535AE;
|
85
|
+
}
|
86
|
+
pre.active4d .TagAttribute {
|
87
|
+
color: #963DFF;
|
88
|
+
}
|
89
|
+
pre.active4d .Keyword {
|
90
|
+
font-weight: bold;
|
91
|
+
color: #006699;
|
92
|
+
}
|
93
|
+
pre.active4d .UserDefinedConstant {
|
94
|
+
}
|
95
|
+
pre.active4d .String {
|
96
|
+
color: #666666;
|
97
|
+
}
|
98
|
+
pre.active4d .DiffUnchangedLine {
|
99
|
+
color: #5E5E5E;
|
100
|
+
}
|
101
|
+
pre.active4d .TagContainer {
|
102
|
+
color: #7A7A7A;
|
103
|
+
}
|
104
|
+
pre.active4d .FunctionName {
|
105
|
+
color: #21439C;
|
106
|
+
}
|
107
|
+
pre.active4d .Variable {
|
108
|
+
font-weight: bold;
|
109
|
+
color: #0053FF;
|
110
|
+
}
|
111
|
+
pre.active4d .DateTimeLiteral {
|
112
|
+
font-weight: bold;
|
113
|
+
color: #66CCFF;
|
114
|
+
}
|
115
|
+
pre.all_hallows_eve .ClassInheritance {
|
116
|
+
font-style: italic;
|
117
|
+
}
|
118
|
+
pre.all_hallows_eve .Constant {
|
119
|
+
color: #3387CC;
|
120
|
+
}
|
121
|
+
pre.all_hallows_eve .TypeName {
|
122
|
+
text-decoration: underline;
|
123
|
+
}
|
124
|
+
pre.all_hallows_eve .TextBase {
|
125
|
+
background-color: #434242;
|
126
|
+
color: #FFFFFF;
|
127
|
+
}
|
128
|
+
pre.all_hallows_eve {
|
129
|
+
background-color: #000000;
|
130
|
+
color: #FFFFFF;
|
131
|
+
}
|
132
|
+
pre.all_hallows_eve .StringEscapesExecuted {
|
133
|
+
color: #555555;
|
134
|
+
}
|
135
|
+
pre.all_hallows_eve .line-numbers {
|
136
|
+
background-color: #73597E;
|
137
|
+
color: #FFFFFF;
|
138
|
+
}
|
139
|
+
pre.all_hallows_eve .StringExecuted {
|
140
|
+
background-color: #CCCC33;
|
141
|
+
color: #000000;
|
142
|
+
}
|
143
|
+
pre.all_hallows_eve .BlockComment {
|
144
|
+
background-color: #9B9B9B;
|
145
|
+
color: #FFFFFF;
|
146
|
+
}
|
147
|
+
pre.all_hallows_eve .TagName {
|
148
|
+
text-decoration: underline;
|
149
|
+
}
|
150
|
+
pre.all_hallows_eve .PreProcessorLine {
|
151
|
+
color: #D0D0FF;
|
152
|
+
}
|
153
|
+
pre.all_hallows_eve .SupportFunction {
|
154
|
+
color: #C83730;
|
155
|
+
}
|
156
|
+
pre.all_hallows_eve .FunctionArgument {
|
157
|
+
font-style: italic;
|
158
|
+
}
|
159
|
+
pre.all_hallows_eve .PreProcessorDirective {
|
160
|
+
}
|
161
|
+
pre.all_hallows_eve .StringEscapes {
|
162
|
+
color: #AAAAAA;
|
163
|
+
}
|
164
|
+
pre.all_hallows_eve .SourceBase {
|
165
|
+
background-color: #000000;
|
166
|
+
color: #FFFFFF;
|
167
|
+
}
|
168
|
+
pre.all_hallows_eve .TagAttribute {
|
169
|
+
}
|
170
|
+
pre.all_hallows_eve .StringLiteral {
|
171
|
+
color: #CCCC33;
|
172
|
+
}
|
173
|
+
pre.all_hallows_eve .String {
|
174
|
+
color: #66CC33;
|
175
|
+
}
|
176
|
+
pre.all_hallows_eve .Keyword {
|
177
|
+
color: #CC7833;
|
178
|
+
}
|
179
|
+
pre.all_hallows_eve .RegularExpression {
|
180
|
+
color: #CCCC33;
|
181
|
+
}
|
182
|
+
pre.all_hallows_eve .FunctionName {
|
183
|
+
}
|
184
|
+
pre.all_hallows_eve .Comment {
|
185
|
+
color: #9933CC;
|
186
|
+
}
|
187
|
+
pre.amy .PolymorphicVariants {
|
188
|
+
color: #60B0FF;
|
189
|
+
font-style: italic;
|
190
|
+
}
|
191
|
+
pre.amy .KeywordDecorator {
|
192
|
+
color: #D0D0FF;
|
193
|
+
}
|
194
|
+
pre.amy .Punctuation {
|
195
|
+
color: #805080;
|
196
|
+
}
|
197
|
+
pre.amy .InheritedClass {
|
198
|
+
}
|
199
|
+
pre.amy .InvalidDepricated {
|
200
|
+
background-color: #CC66FF;
|
201
|
+
color: #200020;
|
202
|
+
}
|
203
|
+
pre.amy .LibraryVariable {
|
204
|
+
}
|
205
|
+
pre.amy .TokenReferenceOcamlyacc {
|
206
|
+
color: #3CB0D0;
|
207
|
+
}
|
208
|
+
pre.amy .Storage {
|
209
|
+
color: #B0FFF0;
|
210
|
+
}
|
211
|
+
pre.amy .KeywordOperator {
|
212
|
+
color: #A0A0FF;
|
213
|
+
}
|
214
|
+
pre.amy .CharacterConstant {
|
215
|
+
color: #666666;
|
216
|
+
}
|
217
|
+
pre.amy .line-numbers {
|
218
|
+
background-color: #800000;
|
219
|
+
color: #000000;
|
220
|
+
}
|
221
|
+
pre.amy .ClassName {
|
222
|
+
color: #70E080;
|
223
|
+
}
|
224
|
+
pre.amy .Int64Constant {
|
225
|
+
font-style: italic;
|
226
|
+
}
|
227
|
+
pre.amy .NonTerminalReferenceOcamlyacc {
|
228
|
+
color: #C0F0F0;
|
229
|
+
}
|
230
|
+
pre.amy .TokenDefinitionOcamlyacc {
|
231
|
+
color: #3080A0;
|
232
|
+
}
|
233
|
+
pre.amy .ClassType {
|
234
|
+
color: #70E0A0;
|
235
|
+
}
|
236
|
+
pre.amy .ControlKeyword {
|
237
|
+
color: #80A0FF;
|
238
|
+
}
|
239
|
+
pre.amy .LineNumberDirectives {
|
240
|
+
text-decoration: underline;
|
241
|
+
color: #C080C0;
|
242
|
+
}
|
243
|
+
pre.amy .FloatingPointConstant {
|
244
|
+
text-decoration: underline;
|
245
|
+
}
|
246
|
+
pre.amy .Int32Constant {
|
247
|
+
font-weight: bold;
|
248
|
+
}
|
249
|
+
pre.amy .TagName {
|
250
|
+
color: #009090;
|
251
|
+
}
|
252
|
+
pre.amy .ModuleTypeDefinitions {
|
253
|
+
text-decoration: underline;
|
254
|
+
color: #B000B0;
|
255
|
+
}
|
256
|
+
pre.amy .Integer {
|
257
|
+
color: #7090B0;
|
258
|
+
}
|
259
|
+
pre.amy .Camlp4TempParser {
|
260
|
+
}
|
261
|
+
pre.amy .InvalidIllegal {
|
262
|
+
font-weight: bold;
|
263
|
+
background-color: #FFFF00;
|
264
|
+
color: #400080;
|
265
|
+
}
|
266
|
+
pre.amy .LibraryConstant {
|
267
|
+
background-color: #200020;
|
268
|
+
}
|
269
|
+
pre.amy .ModuleDefinitions {
|
270
|
+
color: #B000B0;
|
271
|
+
}
|
272
|
+
pre.amy .Variants {
|
273
|
+
color: #60B0FF;
|
274
|
+
}
|
275
|
+
pre.amy .CompilerDirectives {
|
276
|
+
color: #C080C0;
|
277
|
+
}
|
278
|
+
pre.amy .FloatingPointInfixOperator {
|
279
|
+
text-decoration: underline;
|
280
|
+
}
|
281
|
+
pre.amy .BuiltInConstant1 {
|
282
|
+
}
|
283
|
+
pre.amy {
|
284
|
+
background-color: #200020;
|
285
|
+
color: #D0D0FF;
|
286
|
+
}
|
287
|
+
pre.amy .FunctionArgument {
|
288
|
+
color: #80B0B0;
|
289
|
+
}
|
290
|
+
pre.amy .FloatingPointPrefixOperator {
|
291
|
+
text-decoration: underline;
|
292
|
+
}
|
293
|
+
pre.amy .NativeintConstant {
|
294
|
+
font-weight: bold;
|
295
|
+
}
|
296
|
+
pre.amy .BuiltInConstant {
|
297
|
+
color: #707090;
|
298
|
+
}
|
299
|
+
pre.amy .BooleanConstant {
|
300
|
+
color: #8080A0;
|
301
|
+
}
|
302
|
+
pre.amy .LibraryClassType {
|
303
|
+
}
|
304
|
+
pre.amy .TagAttribute {
|
305
|
+
}
|
306
|
+
pre.amy .Keyword {
|
307
|
+
color: #A080FF;
|
308
|
+
}
|
309
|
+
pre.amy .UserDefinedConstant {
|
310
|
+
}
|
311
|
+
pre.amy .String {
|
312
|
+
color: #999999;
|
313
|
+
}
|
314
|
+
pre.amy .Camlp4Code {
|
315
|
+
background-color: #350060;
|
316
|
+
}
|
317
|
+
pre.amy .NonTerminalDefinitionOcamlyacc {
|
318
|
+
color: #90E0E0;
|
319
|
+
}
|
320
|
+
pre.amy .FunctionName {
|
321
|
+
color: #50A0A0;
|
322
|
+
}
|
323
|
+
pre.amy .SupportModules {
|
324
|
+
color: #A00050;
|
325
|
+
}
|
326
|
+
pre.amy .Variable {
|
327
|
+
color: #008080;
|
328
|
+
}
|
329
|
+
pre.amy .Comment {
|
330
|
+
background-color: #200020;
|
331
|
+
color: #404080;
|
332
|
+
font-style: italic;
|
333
|
+
}
|
334
|
+
pre.blackboard .LatexSupport {
|
335
|
+
color: #FBDE2D;
|
336
|
+
}
|
337
|
+
pre.blackboard .OcamlInfixOperator {
|
338
|
+
color: #8DA6CE;
|
339
|
+
}
|
340
|
+
pre.blackboard .MetaFunctionCallPy {
|
341
|
+
color: #BECDE6;
|
342
|
+
}
|
343
|
+
pre.blackboard .Superclass {
|
344
|
+
color: #FF6400;
|
345
|
+
font-style: italic;
|
346
|
+
}
|
347
|
+
pre.blackboard .Constant {
|
348
|
+
color: #D8FA3C;
|
349
|
+
}
|
350
|
+
pre.blackboard {
|
351
|
+
background-color: #0C1021;
|
352
|
+
color: #F8F8F8;
|
353
|
+
}
|
354
|
+
pre.blackboard .OcamlFPConstant {
|
355
|
+
text-decoration: underline;
|
356
|
+
}
|
357
|
+
pre.blackboard .OcamlFPInfixOperator {
|
358
|
+
text-decoration: underline;
|
359
|
+
}
|
360
|
+
pre.blackboard .Support {
|
361
|
+
color: #8DA6CE;
|
362
|
+
}
|
363
|
+
pre.blackboard .OcamlOperator {
|
364
|
+
color: #F8F8F8;
|
365
|
+
}
|
366
|
+
pre.blackboard .Storage {
|
367
|
+
color: #FBDE2D;
|
368
|
+
}
|
369
|
+
pre.blackboard .line-numbers {
|
370
|
+
background-color: #253B76;
|
371
|
+
color: #FFFFFF;
|
372
|
+
}
|
373
|
+
pre.blackboard .StringInterpolation {
|
374
|
+
color: #FF6400;
|
375
|
+
}
|
376
|
+
pre.blackboard .InvalidIllegal {
|
377
|
+
background-color: #9D1E15;
|
378
|
+
color: #F8F8F8;
|
379
|
+
}
|
380
|
+
pre.blackboard .PlistUnquotedString {
|
381
|
+
color: #FFFFFF;
|
382
|
+
}
|
383
|
+
pre.blackboard .OcamlVariant {
|
384
|
+
color: #D5E0F3;
|
385
|
+
}
|
386
|
+
pre.blackboard .MetaTag {
|
387
|
+
color: #7F90AA;
|
388
|
+
}
|
389
|
+
pre.blackboard .LatexEnvironment {
|
390
|
+
background-color: #F7F7F8;
|
391
|
+
}
|
392
|
+
pre.blackboard .OcamlFPPrefixOperator {
|
393
|
+
text-decoration: underline;
|
394
|
+
}
|
395
|
+
pre.blackboard .OcamlPrefixOperator {
|
396
|
+
color: #8DA6CE;
|
397
|
+
}
|
398
|
+
pre.blackboard .EntityNameSection {
|
399
|
+
color: #FFFFFF;
|
400
|
+
}
|
401
|
+
pre.blackboard .String {
|
402
|
+
color: #61CE3C;
|
403
|
+
}
|
404
|
+
pre.blackboard .Keyword {
|
405
|
+
color: #FBDE2D;
|
406
|
+
}
|
407
|
+
pre.blackboard .LatexEnvironmentNested {
|
408
|
+
background-color: #7691F3;
|
409
|
+
}
|
410
|
+
pre.blackboard .InvalidDeprecated {
|
411
|
+
color: #AB2A1D;
|
412
|
+
font-style: italic;
|
413
|
+
}
|
414
|
+
pre.blackboard .Variable {
|
415
|
+
}
|
416
|
+
pre.blackboard .Entity {
|
417
|
+
color: #FF6400;
|
418
|
+
}
|
419
|
+
pre.blackboard .Comment {
|
420
|
+
color: #AEAEAE;
|
421
|
+
}
|
422
|
+
pre.brilliance_black .MetaGroupBraces2 {
|
423
|
+
background-color: #0E0E0E;
|
424
|
+
}
|
425
|
+
pre.brilliance_black .StringEmbeddedSource {
|
426
|
+
color: #406180;
|
427
|
+
}
|
428
|
+
pre.brilliance_black .line-numbers {
|
429
|
+
background-color: #2E2EE6;
|
430
|
+
color: #000000;
|
431
|
+
}
|
432
|
+
pre.brilliance_black .StorageModifier {
|
433
|
+
color: #803D00;
|
434
|
+
}
|
435
|
+
pre.brilliance_black .TagWildcard {
|
436
|
+
font-weight: bold;
|
437
|
+
color: #FF7900;
|
438
|
+
}
|
439
|
+
pre.brilliance_black .MUnderline {
|
440
|
+
text-decoration: underline;
|
441
|
+
}
|
442
|
+
pre.brilliance_black .MetaGroupBraces3 {
|
443
|
+
background-color: #111111;
|
444
|
+
}
|
445
|
+
pre.brilliance_black .MiscPunctuation {
|
446
|
+
font-weight: bold;
|
447
|
+
color: #4C4C4C;
|
448
|
+
}
|
449
|
+
pre.brilliance_black .LEntityNameSection {
|
450
|
+
background-color: #FFFFFF;
|
451
|
+
color: #000000;
|
452
|
+
}
|
453
|
+
pre.brilliance_black .MItalic {
|
454
|
+
font-style: italic;
|
455
|
+
}
|
456
|
+
pre.brilliance_black .MetaGroupBraces4 {
|
457
|
+
background-color: #151515;
|
458
|
+
}
|
459
|
+
pre.brilliance_black .DDiffDelete {
|
460
|
+
background-color: #400021;
|
461
|
+
color: #FF40A3;
|
462
|
+
}
|
463
|
+
pre.brilliance_black .LMetaEnvironmentList {
|
464
|
+
background-color: #010101;
|
465
|
+
color: #515151;
|
466
|
+
}
|
467
|
+
pre.brilliance_black .InheritedClass {
|
468
|
+
background-color: #480204;
|
469
|
+
color: #FF0086;
|
470
|
+
}
|
471
|
+
pre.brilliance_black .LKeywordOperatorBraces {
|
472
|
+
color: #666666;
|
473
|
+
}
|
474
|
+
pre.brilliance_black .MetaGroupBraces5 {
|
475
|
+
background-color: #191919;
|
476
|
+
}
|
477
|
+
pre.brilliance_black .ObjectPunctuation {
|
478
|
+
font-weight: bold;
|
479
|
+
color: #0C823B;
|
480
|
+
}
|
481
|
+
pre.brilliance_black .LMetaEndDocument {
|
482
|
+
background-color: #CDCDCD;
|
483
|
+
color: #000000;
|
484
|
+
}
|
485
|
+
pre.brilliance_black .LibraryConstant {
|
486
|
+
color: #00FFF8;
|
487
|
+
}
|
488
|
+
pre.brilliance_black .LibraryVariable {
|
489
|
+
background-color: #024846;
|
490
|
+
color: #00FFF8;
|
491
|
+
}
|
492
|
+
pre.brilliance_black .MetaGroupBraces6 {
|
493
|
+
background-color: #1C1C1C;
|
494
|
+
}
|
495
|
+
pre.brilliance_black .MetaSourceEmbedded {
|
496
|
+
background-color: #010101;
|
497
|
+
color: #666666;
|
498
|
+
}
|
499
|
+
pre.brilliance_black .MetaBracePipe {
|
500
|
+
background-color: #1E1E1E;
|
501
|
+
color: #4C4C4C;
|
502
|
+
}
|
503
|
+
pre.brilliance_black .LMetaLabelReference {
|
504
|
+
background-color: #404040;
|
505
|
+
}
|
506
|
+
pre.brilliance_black .MetaGroupBraces7 {
|
507
|
+
background-color: #1F1F1F;
|
508
|
+
}
|
509
|
+
pre.brilliance_black .TagBlockForm {
|
510
|
+
background-color: #031C34;
|
511
|
+
}
|
512
|
+
pre.brilliance_black .MRawBlock {
|
513
|
+
background-color: #000000;
|
514
|
+
color: #999999;
|
515
|
+
}
|
516
|
+
pre.brilliance_black .KeywordControl {
|
517
|
+
background-color: #230248;
|
518
|
+
color: #F800FF;
|
519
|
+
}
|
520
|
+
pre.brilliance_black .KeywordOperatorGetter {
|
521
|
+
color: #8083FF;
|
522
|
+
}
|
523
|
+
pre.brilliance_black .LVariableParameterCite {
|
524
|
+
background-color: #400022;
|
525
|
+
color: #FFBFE1;
|
526
|
+
}
|
527
|
+
pre.brilliance_black .MetaGroupBraces8 {
|
528
|
+
background-color: #212121;
|
529
|
+
}
|
530
|
+
pre.brilliance_black .MetaDelimiter {
|
531
|
+
font-weight: bold;
|
532
|
+
background-color: #151515;
|
533
|
+
color: #FFFFFF;
|
534
|
+
}
|
535
|
+
pre.brilliance_black .LMetaEnvironmentList2 {
|
536
|
+
background-color: #010101;
|
537
|
+
color: #515151;
|
538
|
+
}
|
539
|
+
pre.brilliance_black .LMetaFootnote {
|
540
|
+
background-color: #020448;
|
541
|
+
color: #3D43EF;
|
542
|
+
}
|
543
|
+
pre.brilliance_black .KeywordOperatorSetter {
|
544
|
+
}
|
545
|
+
pre.brilliance_black .StringRegexGroup1 {
|
546
|
+
background-color: #274802;
|
547
|
+
}
|
548
|
+
pre.brilliance_black .TagName {
|
549
|
+
color: #EFEFEF;
|
550
|
+
}
|
551
|
+
pre.brilliance_black .VariableLanguageThisJsPrototype {
|
552
|
+
color: #666666;
|
553
|
+
}
|
554
|
+
pre.brilliance_black .MetaGroupBraces9 {
|
555
|
+
background-color: #242424;
|
556
|
+
}
|
557
|
+
pre.brilliance_black .BoldStringQuotes {
|
558
|
+
font-weight: bold;
|
559
|
+
color: #803D00;
|
560
|
+
}
|
561
|
+
pre.brilliance_black .MetaDelimiterObjectJs {
|
562
|
+
background-color: #010101;
|
563
|
+
}
|
564
|
+
pre.brilliance_black .MetaDelimiterStatementJs {
|
565
|
+
background-color: #000000;
|
566
|
+
}
|
567
|
+
pre.brilliance_black .Invalid {
|
568
|
+
font-weight: bold;
|
569
|
+
background-color: #FF0007;
|
570
|
+
color: #330000;
|
571
|
+
}
|
572
|
+
pre.brilliance_black .LMetaEnvironmentList3 {
|
573
|
+
background-color: #000000;
|
574
|
+
color: #515151;
|
575
|
+
}
|
576
|
+
pre.brilliance_black .MQuoteBlock {
|
577
|
+
background-color: #656565;
|
578
|
+
}
|
579
|
+
pre.brilliance_black .ClassMethod {
|
580
|
+
color: #FF0086;
|
581
|
+
}
|
582
|
+
pre.brilliance_black .Keyword {
|
583
|
+
color: #F800FF;
|
584
|
+
}
|
585
|
+
pre.brilliance_black .AttributeMatch {
|
586
|
+
background-color: #020448;
|
587
|
+
color: #0007FF;
|
588
|
+
}
|
589
|
+
pre.brilliance_black .HackKeywordControlRubyStartBlock {
|
590
|
+
}
|
591
|
+
pre.brilliance_black .StringRegexGroup2 {
|
592
|
+
background-color: #274802;
|
593
|
+
color: #EBEBEB;
|
594
|
+
}
|
595
|
+
pre.brilliance_black .MetaBraceCurlyFunction {
|
596
|
+
background-color: #230248;
|
597
|
+
color: #8083FF;
|
598
|
+
}
|
599
|
+
pre.brilliance_black .DDiffAdd {
|
600
|
+
background-color: #00401E;
|
601
|
+
color: #40FF9A;
|
602
|
+
}
|
603
|
+
pre.brilliance_black .MetaBraceErbReturnValue {
|
604
|
+
background-color: #284935;
|
605
|
+
color: #45815D;
|
606
|
+
}
|
607
|
+
pre.brilliance_black .LMetaEnvironmentList4 {
|
608
|
+
color: #515151;
|
609
|
+
}
|
610
|
+
pre.brilliance_black .TagAttribute {
|
611
|
+
color: #F5F5F5;
|
612
|
+
}
|
613
|
+
pre.brilliance_black .MReference {
|
614
|
+
color: #0086FF;
|
615
|
+
}
|
616
|
+
pre.brilliance_black .Function {
|
617
|
+
background-color: #480227;
|
618
|
+
color: #800043;
|
619
|
+
}
|
620
|
+
pre.brilliance_black .StringRegexGroup3 {
|
621
|
+
background-color: #274802;
|
622
|
+
color: #EBEBEB;
|
623
|
+
}
|
624
|
+
pre.brilliance_black .GlobalVariable {
|
625
|
+
background-color: #022748;
|
626
|
+
color: #00807C;
|
627
|
+
}
|
628
|
+
pre.brilliance_black .LMetaEnvironmentList5 {
|
629
|
+
color: #515151;
|
630
|
+
}
|
631
|
+
pre.brilliance_black .EntityNamePreprocessor {
|
632
|
+
background-color: #482302;
|
633
|
+
}
|
634
|
+
pre.brilliance_black .StringRegexGroup4 {
|
635
|
+
background-color: #274802;
|
636
|
+
color: #EBEBEB;
|
637
|
+
}
|
638
|
+
pre.brilliance_black .LSupportFunctionSection {
|
639
|
+
color: #D9D9D9;
|
640
|
+
}
|
641
|
+
pre.brilliance_black .LMetaEnvironmentList6 {
|
642
|
+
color: #515151;
|
643
|
+
}
|
644
|
+
pre.brilliance_black .Id {
|
645
|
+
color: #FF0086;
|
646
|
+
}
|
647
|
+
pre.brilliance_black .CurlyPunctuation {
|
648
|
+
font-weight: bold;
|
649
|
+
color: #FFFFFF;
|
650
|
+
}
|
651
|
+
pre.brilliance_black .SubtlegradientCom {
|
652
|
+
background-color: #FFFFFF;
|
653
|
+
text-decoration: underline;
|
654
|
+
color: #555555;
|
655
|
+
}
|
656
|
+
pre.brilliance_black .StringPunctuation {
|
657
|
+
color: #803D00;
|
658
|
+
}
|
659
|
+
pre.brilliance_black .LSupportFunction {
|
660
|
+
color: #BC80FF;
|
661
|
+
}
|
662
|
+
pre.brilliance_black .TextSubversionCommit {
|
663
|
+
background-color: #FFFFFF;
|
664
|
+
color: #000000;
|
665
|
+
}
|
666
|
+
pre.brilliance_black .SourceEmbededSource {
|
667
|
+
background-color: #161616;
|
668
|
+
}
|
669
|
+
pre.brilliance_black .TagOther {
|
670
|
+
background-color: #480204;
|
671
|
+
color: #FF0007;
|
672
|
+
}
|
673
|
+
pre.brilliance_black .ClassVariable {
|
674
|
+
background-color: #02068E;
|
675
|
+
color: #0086FF;
|
676
|
+
}
|
677
|
+
pre.brilliance_black .LVariableParameterLabel {
|
678
|
+
color: #E6E6E6;
|
679
|
+
}
|
680
|
+
pre.brilliance_black .MetaGroupAssertionRegexp {
|
681
|
+
background-color: #024B8E;
|
682
|
+
}
|
683
|
+
pre.brilliance_black .DDiffChanged {
|
684
|
+
background-color: #803D00;
|
685
|
+
color: #FFFF55;
|
686
|
+
}
|
687
|
+
pre.brilliance_black .HtmlComment {
|
688
|
+
font-style: italic;
|
689
|
+
}
|
690
|
+
pre.brilliance_black .StringInterpolated {
|
691
|
+
background-color: #1A1A1A;
|
692
|
+
color: #FFFC80;
|
693
|
+
}
|
694
|
+
pre.brilliance_black .BuiltInConstant1 {
|
695
|
+
background-color: #044802;
|
696
|
+
color: #07FF00;
|
697
|
+
}
|
698
|
+
pre.brilliance_black .InstanceConstructor {
|
699
|
+
background-color: #480227;
|
700
|
+
}
|
701
|
+
pre.brilliance_black .Instance {
|
702
|
+
color: #FF0007;
|
703
|
+
}
|
704
|
+
pre.brilliance_black .MetaPropertyList {
|
705
|
+
font-weight: bold;
|
706
|
+
color: #333333;
|
707
|
+
}
|
708
|
+
pre.brilliance_black .Latex {
|
709
|
+
}
|
710
|
+
pre.brilliance_black .LMarkupRaw {
|
711
|
+
background-color: #000000;
|
712
|
+
}
|
713
|
+
pre.brilliance_black .StringPunctuationIi {
|
714
|
+
color: #F5EF28;
|
715
|
+
}
|
716
|
+
pre.brilliance_black .Css {
|
717
|
+
}
|
718
|
+
pre.brilliance_black .ClassName {
|
719
|
+
color: #FF0007;
|
720
|
+
}
|
721
|
+
pre.brilliance_black .MetaPropertyName {
|
722
|
+
color: #999999;
|
723
|
+
}
|
724
|
+
pre.brilliance_black .LKeywordControlRef {
|
725
|
+
background-color: #260001;
|
726
|
+
color: #FF0007;
|
727
|
+
}
|
728
|
+
pre.brilliance_black .MetaHeadersBlogKeywordOtherBlog {
|
729
|
+
background-color: #036562;
|
730
|
+
color: #06403E;
|
731
|
+
}
|
732
|
+
pre.brilliance_black .PseudoClass {
|
733
|
+
color: #7900FF;
|
734
|
+
}
|
735
|
+
pre.brilliance_black .TagBlockHead {
|
736
|
+
background-color: #121212;
|
737
|
+
}
|
738
|
+
pre.brilliance_black .StringRegexArbitraryRepitition {
|
739
|
+
background-color: #274802;
|
740
|
+
color: #00FFF8;
|
741
|
+
}
|
742
|
+
pre.brilliance_black .LKeywordOperatorDelimiter {
|
743
|
+
background-color: #010101;
|
744
|
+
}
|
745
|
+
pre.brilliance_black .FunctionArgument {
|
746
|
+
background-color: #230248;
|
747
|
+
color: #8083FF;
|
748
|
+
}
|
749
|
+
pre.brilliance_black .MReferenceName {
|
750
|
+
background-color: #022748;
|
751
|
+
color: #00FFF8;
|
752
|
+
}
|
753
|
+
pre.brilliance_black .TextSubversionCommitMetaScopeChangedFiles {
|
754
|
+
background-color: #000000;
|
755
|
+
color: #FFFFFF;
|
756
|
+
}
|
757
|
+
pre.brilliance_black .VariablePunctuation {
|
758
|
+
color: #666666;
|
759
|
+
}
|
760
|
+
pre.brilliance_black .MUnderlineLink {
|
761
|
+
text-decoration: underline;
|
762
|
+
color: #00FFF8;
|
763
|
+
}
|
764
|
+
pre.brilliance_black .Selector {
|
765
|
+
background-color: #010101;
|
766
|
+
color: #666666;
|
767
|
+
}
|
768
|
+
pre.brilliance_black .TagDoctype {
|
769
|
+
background-color: #333333;
|
770
|
+
color: #CDCDCD;
|
771
|
+
}
|
772
|
+
pre.brilliance_black .Class {
|
773
|
+
background-color: #8E0206;
|
774
|
+
color: #800004;
|
775
|
+
}
|
776
|
+
pre.brilliance_black .BuiltInConstant {
|
777
|
+
color: #07FF00;
|
778
|
+
}
|
779
|
+
pre.brilliance_black .MBold {
|
780
|
+
font-weight: bold;
|
781
|
+
}
|
782
|
+
pre.brilliance_black .MHeading {
|
783
|
+
background-color: #272727;
|
784
|
+
color: #666666;
|
785
|
+
}
|
786
|
+
pre.brilliance_black .ConstantVariable {
|
787
|
+
color: #00FFF8;
|
788
|
+
}
|
789
|
+
pre.brilliance_black .XmlTag {
|
790
|
+
color: #666666;
|
791
|
+
}
|
792
|
+
pre.brilliance_black .MHr {
|
793
|
+
background-color: #FFFFFF;
|
794
|
+
color: #000000;
|
795
|
+
}
|
796
|
+
pre.brilliance_black .LKeywordControlCite {
|
797
|
+
background-color: #260014;
|
798
|
+
color: #FF0086;
|
799
|
+
}
|
800
|
+
pre.brilliance_black .FunctionPunctuation {
|
801
|
+
font-weight: bold;
|
802
|
+
color: #800043;
|
803
|
+
}
|
804
|
+
pre.brilliance_black .Variable {
|
805
|
+
color: #0086FF;
|
806
|
+
}
|
807
|
+
pre.brilliance_black .Syntax {
|
808
|
+
color: #333333;
|
809
|
+
}
|
810
|
+
pre.brilliance_black .MetaPropertyValue {
|
811
|
+
background-color: #0D0D0D;
|
812
|
+
color: #999999;
|
813
|
+
}
|
814
|
+
pre.brilliance_black .KeywordOperator {
|
815
|
+
color: #6100CC;
|
816
|
+
}
|
817
|
+
pre.brilliance_black .StringUnquoted {
|
818
|
+
color: #FFBC80;
|
819
|
+
}
|
820
|
+
pre.brilliance_black .LConstantLanguageGeneral {
|
821
|
+
}
|
822
|
+
pre.brilliance_black .TextStringSource {
|
823
|
+
color: #999999;
|
824
|
+
}
|
825
|
+
pre.brilliance_black .LVariableParameterLabelReference {
|
826
|
+
background-color: #400002;
|
827
|
+
color: #FFBC80;
|
828
|
+
}
|
829
|
+
pre.brilliance_black .Source {
|
830
|
+
background-color: #000000;
|
831
|
+
}
|
832
|
+
pre.brilliance_black .MetaHeadersBlogStringUnquotedBlog {
|
833
|
+
background-color: #656523;
|
834
|
+
color: #803D00;
|
835
|
+
}
|
836
|
+
pre.brilliance_black .StringRegexCharacterClass {
|
837
|
+
background-color: #274802;
|
838
|
+
color: #86FF00;
|
839
|
+
}
|
840
|
+
pre.brilliance_black .LibraryFunction {
|
841
|
+
color: #6100CC;
|
842
|
+
}
|
843
|
+
pre.brilliance_black .MetaBlockContentSlate {
|
844
|
+
color: #CDCDCD;
|
845
|
+
}
|
846
|
+
pre.brilliance_black .TextStringSourceStringSource {
|
847
|
+
}
|
848
|
+
pre.brilliance_black .MetaBraceErb1 {
|
849
|
+
background-color: #000000;
|
850
|
+
}
|
851
|
+
pre.brilliance_black .TagInline {
|
852
|
+
background-color: #482302;
|
853
|
+
color: #FF7900;
|
854
|
+
}
|
855
|
+
pre.brilliance_black .String {
|
856
|
+
background-color: #482302;
|
857
|
+
color: #FFFC80;
|
858
|
+
}
|
859
|
+
pre.brilliance_black .MetaBlockSlate {
|
860
|
+
color: #666666;
|
861
|
+
}
|
862
|
+
pre.brilliance_black .MetaHeadersBlog1 {
|
863
|
+
background-color: #FFFFFF;
|
864
|
+
color: #666666;
|
865
|
+
}
|
866
|
+
pre.brilliance_black .SourceRubyRailsEmbeddedOneLine {
|
867
|
+
background-color: #036562;
|
868
|
+
}
|
869
|
+
pre.brilliance_black .SourceRubyRailsEmbeddedReturnValueOneLine {
|
870
|
+
background-color: #3A3A3A;
|
871
|
+
}
|
872
|
+
pre.brilliance_black .MMarkup {
|
873
|
+
background-color: #1E1E1E;
|
874
|
+
color: #FFF800;
|
875
|
+
}
|
876
|
+
pre.brilliance_black .TagBlock {
|
877
|
+
background-color: #2C2C2C;
|
878
|
+
color: #4C4C4C;
|
879
|
+
}
|
880
|
+
pre.brilliance_black .CommentPunctuation1 {
|
881
|
+
color: #333333;
|
882
|
+
}
|
883
|
+
pre.brilliance_black .SourceStringInterpolatedSource {
|
884
|
+
background-color: #010101;
|
885
|
+
color: #999999;
|
886
|
+
}
|
887
|
+
pre.brilliance_black .SourceStringSource {
|
888
|
+
background-color: #272727;
|
889
|
+
color: #FFFFFF;
|
890
|
+
}
|
891
|
+
pre.brilliance_black .xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx {
|
892
|
+
background-color: #FFFFFF;
|
893
|
+
color: #E6E6E6;
|
894
|
+
}
|
895
|
+
pre.brilliance_black .LKeywordOperatorBrackets {
|
896
|
+
color: #999999;
|
897
|
+
}
|
898
|
+
pre.brilliance_black .SourceRegexpKeyword {
|
899
|
+
color: #FF0086;
|
900
|
+
}
|
901
|
+
pre.brilliance_black .TagMeta {
|
902
|
+
background-color: #230248;
|
903
|
+
color: #F800FF;
|
904
|
+
}
|
905
|
+
pre.brilliance_black .GlobalPreDefinedVariable {
|
906
|
+
background-color: #024846;
|
907
|
+
color: #00FF79;
|
908
|
+
}
|
909
|
+
pre.brilliance_black .TagForm {
|
910
|
+
background-color: #022748;
|
911
|
+
color: #0086FF;
|
912
|
+
}
|
913
|
+
pre.brilliance_black .Tag {
|
914
|
+
color: #333333;
|
915
|
+
}
|
916
|
+
pre.brilliance_black .UserDefinedConstant {
|
917
|
+
color: #00FF79;
|
918
|
+
}
|
919
|
+
pre.brilliance_black .NormalVariables {
|
920
|
+
color: #406180;
|
921
|
+
}
|
922
|
+
pre.brilliance_black .ThomasAylott {
|
923
|
+
font-weight: bold;
|
924
|
+
background-color: #FFFFFF;
|
925
|
+
color: #000000;
|
926
|
+
}
|
927
|
+
pre.brilliance_black .Comment1 {
|
928
|
+
color: #333333;
|
929
|
+
}
|
930
|
+
pre.brilliance_black .TextSource {
|
931
|
+
background-color: #000000;
|
932
|
+
color: #CCCCCC;
|
933
|
+
}
|
934
|
+
pre.brilliance_black .MetaBraceErb {
|
935
|
+
background-color: #036562;
|
936
|
+
color: #00FFF8;
|
937
|
+
}
|
938
|
+
pre.brilliance_black .SupportTypePropertyName {
|
939
|
+
background-color: #000000;
|
940
|
+
color: #FFFFFF;
|
941
|
+
}
|
942
|
+
pre.brilliance_black .StringLiteral {
|
943
|
+
background-color: #274802;
|
944
|
+
color: #FFF800;
|
945
|
+
}
|
946
|
+
pre.brilliance_black .MetaGroupBracesRoundJs {
|
947
|
+
}
|
948
|
+
pre.brilliance_black .MetaHeadersBlog {
|
949
|
+
background-color: #FFFFFF;
|
950
|
+
}
|
951
|
+
pre.brilliance_black .Comment {
|
952
|
+
background-color: #030365;
|
953
|
+
color: #5555FF;
|
954
|
+
font-style: italic;
|
955
|
+
}
|
956
|
+
pre.brilliance_black .Class1 {
|
957
|
+
color: #F800FF;
|
958
|
+
}
|
959
|
+
pre.brilliance_black .Text {
|
960
|
+
color: #FFFFFF;
|
961
|
+
}
|
962
|
+
pre.brilliance_black .StringRegex {
|
963
|
+
background-color: #274802;
|
964
|
+
color: #FFF800;
|
965
|
+
}
|
966
|
+
pre.brilliance_black .CommentPunctuation {
|
967
|
+
font-weight: bold;
|
968
|
+
color: #1414F9;
|
969
|
+
}
|
970
|
+
pre.brilliance_black .MetaTagInlineSource {
|
971
|
+
background-color: #482302;
|
972
|
+
}
|
973
|
+
pre.brilliance_black .TagStructure {
|
974
|
+
background-color: #2A2A2A;
|
975
|
+
color: #666666;
|
976
|
+
}
|
977
|
+
pre.brilliance_black .Tag1 {
|
978
|
+
color: #FF0007;
|
979
|
+
}
|
980
|
+
pre.brilliance_black .FunctionName {
|
981
|
+
color: #FF0086;
|
982
|
+
}
|
983
|
+
pre.brilliance_black .LMetaGroupBraces {
|
984
|
+
color: #515151;
|
985
|
+
}
|
986
|
+
pre.brilliance_black .Storage {
|
987
|
+
color: #FF7900;
|
988
|
+
}
|
989
|
+
pre.brilliance_black .MetaAssertion {
|
990
|
+
color: #0086FF;
|
991
|
+
}
|
992
|
+
pre.brilliance_black .MetaBraceCurlyMetaGroup {
|
993
|
+
background-color: #010101;
|
994
|
+
color: #CDCDCD;
|
995
|
+
}
|
996
|
+
pre.brilliance_black .ArrayPunctuation {
|
997
|
+
font-weight: bold;
|
998
|
+
background-color: #341A03;
|
999
|
+
color: #7F5E40;
|
1000
|
+
}
|
1001
|
+
pre.brilliance_black .SpecialFunction {
|
1002
|
+
color: #8C60BF;
|
1003
|
+
}
|
1004
|
+
pre.brilliance_black .InstanceVariable {
|
1005
|
+
color: #406180;
|
1006
|
+
}
|
1007
|
+
pre.brilliance_black .CharacterConstant {
|
1008
|
+
color: #86FF00;
|
1009
|
+
}
|
1010
|
+
pre.brilliance_black {
|
1011
|
+
background-color: #050505;
|
1012
|
+
color: #CDCDCD;
|
1013
|
+
}
|
1014
|
+
pre.brilliance_black .LibraryClassType {
|
1015
|
+
background-color: #480204;
|
1016
|
+
color: #FF0007;
|
1017
|
+
}
|
1018
|
+
pre.brilliance_black .Number {
|
1019
|
+
color: #C6FF00;
|
1020
|
+
}
|
1021
|
+
pre.brilliance_black .MetaGroupBraces1 {
|
1022
|
+
background-color: #0A0A0A;
|
1023
|
+
}
|
1024
|
+
pre.brilliance_black .TagValue {
|
1025
|
+
color: #EBEBEB;
|
1026
|
+
}
|
1027
|
+
pre.brilliance_dull .MetaGroupBraces2 {
|
1028
|
+
background-color: #0E0E0E;
|
1029
|
+
}
|
1030
|
+
pre.brilliance_dull .StringEmbeddedSource {
|
1031
|
+
color: #555F68;
|
1032
|
+
}
|
1033
|
+
pre.brilliance_dull .line-numbers {
|
1034
|
+
background-color: #2B2F53;
|
1035
|
+
color: #FFFFFF;
|
1036
|
+
}
|
1037
|
+
pre.brilliance_dull .StorageModifier {
|
1038
|
+
}
|
1039
|
+
pre.brilliance_dull .TagWildcard {
|
1040
|
+
font-weight: bold;
|
1041
|
+
color: #A57C57;
|
1042
|
+
}
|
1043
|
+
pre.brilliance_dull .MUnderline {
|
1044
|
+
text-decoration: underline;
|
1045
|
+
}
|
1046
|
+
pre.brilliance_dull .MetaGroupBraces3 {
|
1047
|
+
background-color: #111111;
|
1048
|
+
}
|
1049
|
+
pre.brilliance_dull .MiscPunctuation {
|
1050
|
+
font-weight: bold;
|
1051
|
+
color: #666666;
|
1052
|
+
}
|
1053
|
+
pre.brilliance_dull .LEntityNameSection {
|
1054
|
+
background-color: #FFFFFF;
|
1055
|
+
color: #000000;
|
1056
|
+
}
|
1057
|
+
pre.brilliance_dull .MItalic {
|
1058
|
+
font-style: italic;
|
1059
|
+
}
|
1060
|
+
pre.brilliance_dull .MetaGroupBraces4 {
|
1061
|
+
background-color: #151515;
|
1062
|
+
}
|
1063
|
+
pre.brilliance_dull .DDiffDelete {
|
1064
|
+
background-color: #28151F;
|
1065
|
+
color: #BB82A0;
|
1066
|
+
}
|
1067
|
+
pre.brilliance_dull .LMetaEnvironmentList {
|
1068
|
+
background-color: #000000;
|
1069
|
+
color: #515151;
|
1070
|
+
}
|
1071
|
+
pre.brilliance_dull .InheritedClass {
|
1072
|
+
background-color: #2C1818;
|
1073
|
+
color: #A45880;
|
1074
|
+
}
|
1075
|
+
pre.brilliance_dull .LKeywordOperatorBraces {
|
1076
|
+
color: #666666;
|
1077
|
+
}
|
1078
|
+
pre.brilliance_dull .MetaGroupBraces5 {
|
1079
|
+
background-color: #191919;
|
1080
|
+
}
|
1081
|
+
pre.brilliance_dull .ObjectPunctuation {
|
1082
|
+
font-weight: bold;
|
1083
|
+
color: #345741;
|
1084
|
+
}
|
1085
|
+
pre.brilliance_dull .LMetaEndDocument {
|
1086
|
+
background-color: #CCCCCC;
|
1087
|
+
color: #000000;
|
1088
|
+
}
|
1089
|
+
pre.brilliance_dull .LibraryConstant {
|
1090
|
+
color: #57A5A3;
|
1091
|
+
}
|
1092
|
+
pre.brilliance_dull .LibraryVariable {
|
1093
|
+
background-color: #182D2C;
|
1094
|
+
color: #57A5A3;
|
1095
|
+
}
|
1096
|
+
pre.brilliance_dull .MetaGroupBraces6 {
|
1097
|
+
background-color: #1C1C1C;
|
1098
|
+
}
|
1099
|
+
pre.brilliance_dull .MetaSourceEmbedded {
|
1100
|
+
background-color: #000000;
|
1101
|
+
color: #666666;
|
1102
|
+
}
|
1103
|
+
pre.brilliance_dull .MetaBracePipe {
|
1104
|
+
background-color: #1C1C1C;
|
1105
|
+
color: #4C4C4C;
|
1106
|
+
}
|
1107
|
+
pre.brilliance_dull .KeywordOperatorArithmetic {
|
1108
|
+
color: #5B6190;
|
1109
|
+
}
|
1110
|
+
pre.brilliance_dull .LMetaLabelReference {
|
1111
|
+
background-color: #3C3C3C;
|
1112
|
+
}
|
1113
|
+
pre.brilliance_dull .MetaGroupBraces7 {
|
1114
|
+
background-color: #1F1F1F;
|
1115
|
+
}
|
1116
|
+
pre.brilliance_dull .LVariableParameterCite {
|
1117
|
+
background-color: #28151F;
|
1118
|
+
color: #E7D4DF;
|
1119
|
+
}
|
1120
|
+
pre.brilliance_dull .TagBlockForm {
|
1121
|
+
background-color: #10181F;
|
1122
|
+
}
|
1123
|
+
pre.brilliance_dull .MRawBlock {
|
1124
|
+
background-color: #000000;
|
1125
|
+
color: #999999;
|
1126
|
+
}
|
1127
|
+
pre.brilliance_dull .KeywordControl {
|
1128
|
+
color: #A358A5;
|
1129
|
+
}
|
1130
|
+
pre.brilliance_dull .MetaGroupBraces8 {
|
1131
|
+
background-color: #212121;
|
1132
|
+
}
|
1133
|
+
pre.brilliance_dull .MetaDelimiter {
|
1134
|
+
font-weight: bold;
|
1135
|
+
background-color: #111111;
|
1136
|
+
color: #FFFFFF;
|
1137
|
+
}
|
1138
|
+
pre.brilliance_dull .LMetaEnvironmentList2 {
|
1139
|
+
background-color: #000000;
|
1140
|
+
color: #515151;
|
1141
|
+
}
|
1142
|
+
pre.brilliance_dull .LMetaFootnote {
|
1143
|
+
background-color: #18172D;
|
1144
|
+
color: #7A7BB0;
|
1145
|
+
}
|
1146
|
+
pre.brilliance_dull .RegexKeyword {
|
1147
|
+
}
|
1148
|
+
pre.brilliance_dull .StringRegexGroup1 {
|
1149
|
+
background-color: #232D18;
|
1150
|
+
}
|
1151
|
+
pre.brilliance_dull .TagName {
|
1152
|
+
color: #EFEFEF;
|
1153
|
+
}
|
1154
|
+
pre.brilliance_dull .VariableLanguageThisJsPrototype {
|
1155
|
+
color: #666666;
|
1156
|
+
}
|
1157
|
+
pre.brilliance_dull .MetaGroupBraces9 {
|
1158
|
+
background-color: #242424;
|
1159
|
+
}
|
1160
|
+
pre.brilliance_dull .BoldStringQuotes {
|
1161
|
+
font-weight: bold;
|
1162
|
+
}
|
1163
|
+
pre.brilliance_dull .MetaDelimiterObjectJs {
|
1164
|
+
background-color: #000000;
|
1165
|
+
}
|
1166
|
+
pre.brilliance_dull .MetaDelimiterStatementJs {
|
1167
|
+
background-color: #000000;
|
1168
|
+
}
|
1169
|
+
pre.brilliance_dull .Invalid {
|
1170
|
+
font-weight: bold;
|
1171
|
+
background-color: #A5585A;
|
1172
|
+
color: #201111;
|
1173
|
+
}
|
1174
|
+
pre.brilliance_dull .LMetaEnvironmentList3 {
|
1175
|
+
background-color: #000000;
|
1176
|
+
color: #515151;
|
1177
|
+
}
|
1178
|
+
pre.brilliance_dull .MQuoteBlock {
|
1179
|
+
background-color: #616161;
|
1180
|
+
}
|
1181
|
+
pre.brilliance_dull .ClassMethod {
|
1182
|
+
color: #A45880;
|
1183
|
+
}
|
1184
|
+
pre.brilliance_dull .Keyword {
|
1185
|
+
}
|
1186
|
+
pre.brilliance_dull .AttributeMatch {
|
1187
|
+
background-color: #18172D;
|
1188
|
+
color: #5859A5;
|
1189
|
+
}
|
1190
|
+
pre.brilliance_dull .StringRegexGroup2 {
|
1191
|
+
background-color: #232D18;
|
1192
|
+
color: #EAEAEA;
|
1193
|
+
}
|
1194
|
+
pre.brilliance_dull .DDiffAdd {
|
1195
|
+
background-color: #14281D;
|
1196
|
+
color: #82BB9C;
|
1197
|
+
}
|
1198
|
+
pre.brilliance_dull .MetaBraceErbReturnValue {
|
1199
|
+
background-color: #182D25;
|
1200
|
+
color: #58A58A;
|
1201
|
+
}
|
1202
|
+
pre.brilliance_dull .LMetaEnvironmentList4 {
|
1203
|
+
color: #515151;
|
1204
|
+
}
|
1205
|
+
pre.brilliance_dull .FunctionDeclarationParametersPunctuation {
|
1206
|
+
color: #512C2C;
|
1207
|
+
}
|
1208
|
+
pre.brilliance_dull .TagAttribute {
|
1209
|
+
color: #F4F4F4;
|
1210
|
+
}
|
1211
|
+
pre.brilliance_dull .MReference {
|
1212
|
+
color: #5780A5;
|
1213
|
+
}
|
1214
|
+
pre.brilliance_dull .StringRegexGroup3 {
|
1215
|
+
background-color: #232D18;
|
1216
|
+
color: #EAEAEA;
|
1217
|
+
}
|
1218
|
+
pre.brilliance_dull .GlobalVariable {
|
1219
|
+
background-color: #18232D;
|
1220
|
+
color: #2C5251;
|
1221
|
+
}
|
1222
|
+
pre.brilliance_dull .LMetaEnvironmentList5 {
|
1223
|
+
color: #515151;
|
1224
|
+
}
|
1225
|
+
pre.brilliance_dull .EntityNamePreprocessor {
|
1226
|
+
}
|
1227
|
+
pre.brilliance_dull .FunctionDeclarationParameters {
|
1228
|
+
color: #BABBD9;
|
1229
|
+
}
|
1230
|
+
pre.brilliance_dull .StringRegexGroup4 {
|
1231
|
+
background-color: #232D18;
|
1232
|
+
color: #EAEAEA;
|
1233
|
+
}
|
1234
|
+
pre.brilliance_dull .LSupportFunctionSection {
|
1235
|
+
color: #D8D8D8;
|
1236
|
+
}
|
1237
|
+
pre.brilliance_dull .LMetaEnvironmentList6 {
|
1238
|
+
color: #515151;
|
1239
|
+
}
|
1240
|
+
pre.brilliance_dull .Id {
|
1241
|
+
color: #A45880;
|
1242
|
+
}
|
1243
|
+
pre.brilliance_dull .CurlyPunctuation {
|
1244
|
+
font-weight: bold;
|
1245
|
+
color: #FFFFFF;
|
1246
|
+
}
|
1247
|
+
pre.brilliance_dull .SubtlegradientCom {
|
1248
|
+
background-color: #FFFFFF;
|
1249
|
+
text-decoration: underline;
|
1250
|
+
color: #555555;
|
1251
|
+
}
|
1252
|
+
pre.brilliance_dull .StringPunctuation {
|
1253
|
+
}
|
1254
|
+
pre.brilliance_dull .LSupportFunction {
|
1255
|
+
color: #A358A5;
|
1256
|
+
}
|
1257
|
+
pre.brilliance_dull .TextSubversionCommit {
|
1258
|
+
background-color: #FFFFFF;
|
1259
|
+
color: #000000;
|
1260
|
+
}
|
1261
|
+
pre.brilliance_dull .SourceEmbededSource {
|
1262
|
+
background-color: #131313;
|
1263
|
+
}
|
1264
|
+
pre.brilliance_dull .LVariableParameterLabel {
|
1265
|
+
color: #E5E5E5;
|
1266
|
+
}
|
1267
|
+
pre.brilliance_dull .TagOther {
|
1268
|
+
background-color: #2C1818;
|
1269
|
+
color: #A5585A;
|
1270
|
+
}
|
1271
|
+
pre.brilliance_dull .ClassVariable {
|
1272
|
+
background-color: #30305A;
|
1273
|
+
color: #5780A5;
|
1274
|
+
}
|
1275
|
+
pre.brilliance_dull .MetaGroupAssertionRegexp {
|
1276
|
+
background-color: #2F465A;
|
1277
|
+
}
|
1278
|
+
pre.brilliance_dull .KeywordOperatorLogical {
|
1279
|
+
background-color: #1C1C36;
|
1280
|
+
color: #7C85B8;
|
1281
|
+
}
|
1282
|
+
pre.brilliance_dull .DDiffChanged {
|
1283
|
+
color: #C2C28F;
|
1284
|
+
}
|
1285
|
+
pre.brilliance_dull .HtmlComment {
|
1286
|
+
font-style: italic;
|
1287
|
+
}
|
1288
|
+
pre.brilliance_dull .StringInterpolated {
|
1289
|
+
background-color: #1A1A1A;
|
1290
|
+
color: #D1D1AB;
|
1291
|
+
}
|
1292
|
+
pre.brilliance_dull .BuiltInConstant1 {
|
1293
|
+
background-color: #182D18;
|
1294
|
+
color: #5AA557;
|
1295
|
+
}
|
1296
|
+
pre.brilliance_dull .InstanceConstructor {
|
1297
|
+
background-color: #2D1823;
|
1298
|
+
}
|
1299
|
+
pre.brilliance_dull .Instance {
|
1300
|
+
color: #A5585A;
|
1301
|
+
}
|
1302
|
+
pre.brilliance_dull .MetaPropertyList {
|
1303
|
+
font-weight: bold;
|
1304
|
+
color: #333333;
|
1305
|
+
}
|
1306
|
+
pre.brilliance_dull .FunctionDeclarationName {
|
1307
|
+
}
|
1308
|
+
pre.brilliance_dull .Latex {
|
1309
|
+
}
|
1310
|
+
pre.brilliance_dull .LMarkupRaw {
|
1311
|
+
background-color: #000000;
|
1312
|
+
}
|
1313
|
+
pre.brilliance_dull .StringPunctuationIi {
|
1314
|
+
color: #ACAB6F;
|
1315
|
+
}
|
1316
|
+
pre.brilliance_dull .LKeywordControlRef {
|
1317
|
+
background-color: #170C0C;
|
1318
|
+
color: #A5585A;
|
1319
|
+
}
|
1320
|
+
pre.brilliance_dull .Css {
|
1321
|
+
}
|
1322
|
+
pre.brilliance_dull .ClassName {
|
1323
|
+
color: #A5585A;
|
1324
|
+
}
|
1325
|
+
pre.brilliance_dull .MetaPropertyName {
|
1326
|
+
color: #999999;
|
1327
|
+
}
|
1328
|
+
pre.brilliance_dull .MetaHeadersBlogKeywordOtherBlog {
|
1329
|
+
background-color: #213F3E;
|
1330
|
+
color: #182A29;
|
1331
|
+
}
|
1332
|
+
pre.brilliance_dull .PseudoClass {
|
1333
|
+
color: #7D58A4;
|
1334
|
+
}
|
1335
|
+
pre.brilliance_dull {
|
1336
|
+
background-color: #000000;
|
1337
|
+
color: #CCCCCC;
|
1338
|
+
}
|
1339
|
+
pre.brilliance_dull .TagBlockHead {
|
1340
|
+
background-color: #121212;
|
1341
|
+
}
|
1342
|
+
pre.brilliance_dull .StringRegexArbitraryRepitition {
|
1343
|
+
background-color: #232D18;
|
1344
|
+
color: #57A5A3;
|
1345
|
+
}
|
1346
|
+
pre.brilliance_dull .LKeywordOperatorDelimiter {
|
1347
|
+
background-color: #000000;
|
1348
|
+
}
|
1349
|
+
pre.brilliance_dull .MReferenceName {
|
1350
|
+
background-color: #18232D;
|
1351
|
+
color: #57A5A3;
|
1352
|
+
}
|
1353
|
+
pre.brilliance_dull .TextSubversionCommitMetaScopeChangedFiles {
|
1354
|
+
background-color: #000000;
|
1355
|
+
color: #FFFFFF;
|
1356
|
+
}
|
1357
|
+
pre.brilliance_dull .VariablePunctuation {
|
1358
|
+
color: #666666;
|
1359
|
+
}
|
1360
|
+
pre.brilliance_dull .MUnderlineLink {
|
1361
|
+
text-decoration: underline;
|
1362
|
+
color: #57A5A3;
|
1363
|
+
}
|
1364
|
+
pre.brilliance_dull .Selector {
|
1365
|
+
background-color: #000000;
|
1366
|
+
color: #666666;
|
1367
|
+
}
|
1368
|
+
pre.brilliance_dull .TagDoctype {
|
1369
|
+
background-color: #333333;
|
1370
|
+
color: #CCCCCC;
|
1371
|
+
}
|
1372
|
+
pre.brilliance_dull .Class {
|
1373
|
+
background-color: #5A3031;
|
1374
|
+
color: #512C2C;
|
1375
|
+
}
|
1376
|
+
pre.brilliance_dull .BuiltInConstant {
|
1377
|
+
color: #5AA557;
|
1378
|
+
}
|
1379
|
+
pre.brilliance_dull .MBold {
|
1380
|
+
font-weight: bold;
|
1381
|
+
}
|
1382
|
+
pre.brilliance_dull .MHeading {
|
1383
|
+
background-color: #262626;
|
1384
|
+
color: #666666;
|
1385
|
+
}
|
1386
|
+
pre.brilliance_dull .ConstantVariable {
|
1387
|
+
color: #57A5A3;
|
1388
|
+
}
|
1389
|
+
pre.brilliance_dull .LKeywordControlCite {
|
1390
|
+
background-color: #170C12;
|
1391
|
+
color: #A45880;
|
1392
|
+
}
|
1393
|
+
pre.brilliance_dull .XmlTag {
|
1394
|
+
color: #666666;
|
1395
|
+
}
|
1396
|
+
pre.brilliance_dull .MHr {
|
1397
|
+
background-color: #FFFFFF;
|
1398
|
+
color: #000000;
|
1399
|
+
}
|
1400
|
+
pre.brilliance_dull .FunctionPunctuation {
|
1401
|
+
font-weight: bold;
|
1402
|
+
color: #A358A5;
|
1403
|
+
}
|
1404
|
+
pre.brilliance_dull .Variable {
|
1405
|
+
color: #789BB6;
|
1406
|
+
}
|
1407
|
+
pre.brilliance_dull .FunctionCallArgumentsPunctuation {
|
1408
|
+
color: #A358A5;
|
1409
|
+
}
|
1410
|
+
pre.brilliance_dull .Syntax {
|
1411
|
+
color: #333333;
|
1412
|
+
}
|
1413
|
+
pre.brilliance_dull .MetaPropertyValue {
|
1414
|
+
background-color: #0D0D0D;
|
1415
|
+
color: #999999;
|
1416
|
+
}
|
1417
|
+
pre.brilliance_dull .KeywordOperator {
|
1418
|
+
color: #5B6190;
|
1419
|
+
}
|
1420
|
+
pre.brilliance_dull .StringUnquoted {
|
1421
|
+
color: #D1BDAB;
|
1422
|
+
}
|
1423
|
+
pre.brilliance_dull .LConstantLanguageGeneral {
|
1424
|
+
}
|
1425
|
+
pre.brilliance_dull .TextStringSource {
|
1426
|
+
color: #999999;
|
1427
|
+
}
|
1428
|
+
pre.brilliance_dull .LVariableParameterLabelReference {
|
1429
|
+
background-color: #281516;
|
1430
|
+
color: #D1BDAB;
|
1431
|
+
}
|
1432
|
+
pre.brilliance_dull .FunctionDeclarationParameters1 {
|
1433
|
+
color: #BABBD9;
|
1434
|
+
}
|
1435
|
+
pre.brilliance_dull .Source {
|
1436
|
+
background-color: #000000;
|
1437
|
+
}
|
1438
|
+
pre.brilliance_dull .LibraryFunctionCall {
|
1439
|
+
color: #9D80BA;
|
1440
|
+
}
|
1441
|
+
pre.brilliance_dull .MetaHeadersBlogStringUnquotedBlog {
|
1442
|
+
background-color: #4A4A36;
|
1443
|
+
}
|
1444
|
+
pre.brilliance_dull .StringRegexCharacterClass {
|
1445
|
+
background-color: #232D18;
|
1446
|
+
color: #80A557;
|
1447
|
+
}
|
1448
|
+
pre.brilliance_dull .LibraryFunctionName {
|
1449
|
+
background-color: #332D39;
|
1450
|
+
color: #5E5368;
|
1451
|
+
}
|
1452
|
+
pre.brilliance_dull .MetaBlockContentSlate {
|
1453
|
+
color: #CCCCCC;
|
1454
|
+
}
|
1455
|
+
pre.brilliance_dull .TextStringSourceStringSource {
|
1456
|
+
}
|
1457
|
+
pre.brilliance_dull .MetaBraceErb1 {
|
1458
|
+
background-color: #000000;
|
1459
|
+
}
|
1460
|
+
pre.brilliance_dull .String {
|
1461
|
+
color: #D2D191;
|
1462
|
+
}
|
1463
|
+
pre.brilliance_dull .TagInline {
|
1464
|
+
color: #A57C57;
|
1465
|
+
}
|
1466
|
+
pre.brilliance_dull .MetaBlockSlate {
|
1467
|
+
color: #666666;
|
1468
|
+
}
|
1469
|
+
pre.brilliance_dull .MetaHeadersBlog1 {
|
1470
|
+
background-color: #FFFFFF;
|
1471
|
+
color: #666666;
|
1472
|
+
}
|
1473
|
+
pre.brilliance_dull .SourceRubyRailsEmbeddedOneLine {
|
1474
|
+
background-color: #213F3E;
|
1475
|
+
}
|
1476
|
+
pre.brilliance_dull .SourceRubyRailsEmbeddedReturnValueOneLine {
|
1477
|
+
background-color: #464646;
|
1478
|
+
}
|
1479
|
+
pre.brilliance_dull .MMarkup {
|
1480
|
+
background-color: #1C1C1C;
|
1481
|
+
color: #A5A358;
|
1482
|
+
}
|
1483
|
+
pre.brilliance_dull .TagBlock {
|
1484
|
+
background-color: #292929;
|
1485
|
+
color: #4C4C4C;
|
1486
|
+
}
|
1487
|
+
pre.brilliance_dull .SourceStringInterpolatedSource {
|
1488
|
+
background-color: #000000;
|
1489
|
+
color: #999999;
|
1490
|
+
}
|
1491
|
+
pre.brilliance_dull .SourceStringSource {
|
1492
|
+
background-color: #262626;
|
1493
|
+
color: #FFFFFF;
|
1494
|
+
}
|
1495
|
+
pre.brilliance_dull .xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx {
|
1496
|
+
background-color: #FFFFFF;
|
1497
|
+
color: #E6E6E6;
|
1498
|
+
}
|
1499
|
+
pre.brilliance_dull .LKeywordOperatorBrackets {
|
1500
|
+
color: #999999;
|
1501
|
+
}
|
1502
|
+
pre.brilliance_dull .TagMeta {
|
1503
|
+
background-color: #22182D;
|
1504
|
+
color: #A358A5;
|
1505
|
+
}
|
1506
|
+
pre.brilliance_dull .GlobalPreDefinedVariable {
|
1507
|
+
background-color: #182D2C;
|
1508
|
+
color: #58A57C;
|
1509
|
+
}
|
1510
|
+
pre.brilliance_dull .TagForm {
|
1511
|
+
background-color: #18232D;
|
1512
|
+
color: #5780A5;
|
1513
|
+
}
|
1514
|
+
pre.brilliance_dull .Tag {
|
1515
|
+
color: #333333;
|
1516
|
+
}
|
1517
|
+
pre.brilliance_dull .UserDefinedConstant {
|
1518
|
+
color: #58A57C;
|
1519
|
+
}
|
1520
|
+
pre.brilliance_dull .NormalVariables {
|
1521
|
+
color: #555F68;
|
1522
|
+
}
|
1523
|
+
pre.brilliance_dull .ThomasAylott {
|
1524
|
+
font-weight: bold;
|
1525
|
+
background-color: #FFFFFF;
|
1526
|
+
color: #000000;
|
1527
|
+
}
|
1528
|
+
pre.brilliance_dull .TextSource {
|
1529
|
+
background-color: #000000;
|
1530
|
+
color: #CCCCCC;
|
1531
|
+
}
|
1532
|
+
pre.brilliance_dull .MetaBraceErb {
|
1533
|
+
background-color: #213F3E;
|
1534
|
+
color: #57A5A3;
|
1535
|
+
}
|
1536
|
+
pre.brilliance_dull .SupportTypePropertyName {
|
1537
|
+
background-color: #000000;
|
1538
|
+
color: #FFFFFF;
|
1539
|
+
}
|
1540
|
+
pre.brilliance_dull .StringLiteral {
|
1541
|
+
background-color: #232D18;
|
1542
|
+
color: #A5A358;
|
1543
|
+
}
|
1544
|
+
pre.brilliance_dull .KeywordOperatorAssignment {
|
1545
|
+
background-color: #1C1C36;
|
1546
|
+
color: #464684;
|
1547
|
+
}
|
1548
|
+
pre.brilliance_dull .KeywordOperatorComparison {
|
1549
|
+
color: #A9ACD0;
|
1550
|
+
}
|
1551
|
+
pre.brilliance_dull .MetaGroupBracesRoundJs {
|
1552
|
+
}
|
1553
|
+
pre.brilliance_dull .MetaHeadersBlog {
|
1554
|
+
background-color: #FFFFFF;
|
1555
|
+
}
|
1556
|
+
pre.brilliance_dull .Comment {
|
1557
|
+
background-color: #1C1C1C;
|
1558
|
+
color: #ACACAC;
|
1559
|
+
}
|
1560
|
+
pre.brilliance_dull .Class1 {
|
1561
|
+
color: #A358A5;
|
1562
|
+
}
|
1563
|
+
pre.brilliance_dull .Text {
|
1564
|
+
color: #FFFFFF;
|
1565
|
+
}
|
1566
|
+
pre.brilliance_dull .FunctionCallWithoutArguments {
|
1567
|
+
color: #A79EAE;
|
1568
|
+
}
|
1569
|
+
pre.brilliance_dull .StringRegex {
|
1570
|
+
background-color: #232D18;
|
1571
|
+
color: #A5A358;
|
1572
|
+
}
|
1573
|
+
pre.brilliance_dull .FunctionCall {
|
1574
|
+
color: #765F8C;
|
1575
|
+
}
|
1576
|
+
pre.brilliance_dull .CommentPunctuation {
|
1577
|
+
}
|
1578
|
+
pre.brilliance_dull .LMetaGroupBraces {
|
1579
|
+
color: #515151;
|
1580
|
+
}
|
1581
|
+
pre.brilliance_dull .MetaTagInlineSource {
|
1582
|
+
}
|
1583
|
+
pre.brilliance_dull .TagStructure {
|
1584
|
+
background-color: #292929;
|
1585
|
+
color: #666666;
|
1586
|
+
}
|
1587
|
+
pre.brilliance_dull .Tag1 {
|
1588
|
+
color: #A5585A;
|
1589
|
+
}
|
1590
|
+
pre.brilliance_dull .Storage {
|
1591
|
+
color: #A57C57;
|
1592
|
+
}
|
1593
|
+
pre.brilliance_dull .MetaAssertion {
|
1594
|
+
color: #5780A5;
|
1595
|
+
}
|
1596
|
+
pre.brilliance_dull .MetaBraceCurlyMetaGroup {
|
1597
|
+
background-color: #000000;
|
1598
|
+
color: #CCCCCC;
|
1599
|
+
}
|
1600
|
+
pre.brilliance_dull .ArrayPunctuation {
|
1601
|
+
font-weight: bold;
|
1602
|
+
color: #675D54;
|
1603
|
+
}
|
1604
|
+
pre.brilliance_dull .InstanceVariable {
|
1605
|
+
color: #555F68;
|
1606
|
+
}
|
1607
|
+
pre.brilliance_dull .CharacterConstant {
|
1608
|
+
color: #80A557;
|
1609
|
+
}
|
1610
|
+
pre.brilliance_dull .LibraryClassType {
|
1611
|
+
background-color: #2C1818;
|
1612
|
+
color: #A5585A;
|
1613
|
+
}
|
1614
|
+
pre.brilliance_dull .Number {
|
1615
|
+
color: #94A558;
|
1616
|
+
}
|
1617
|
+
pre.brilliance_dull .MetaGroupBraces1 {
|
1618
|
+
background-color: #0A0A0A;
|
1619
|
+
}
|
1620
|
+
pre.brilliance_dull .TagValue {
|
1621
|
+
color: #EAEAEA;
|
1622
|
+
}
|
1623
|
+
pre.brilliance_dull .FunctionDeclaration {
|
1624
|
+
color: #A45880;
|
1625
|
+
}
|
1626
|
+
pre.cobalt .BlockQuote {
|
1627
|
+
background-color: #004480;
|
1628
|
+
}
|
1629
|
+
pre.cobalt .DiffInserted {
|
1630
|
+
background-color: #154F00;
|
1631
|
+
color: #F8F8F8;
|
1632
|
+
}
|
1633
|
+
pre.cobalt .DiffHeader {
|
1634
|
+
background-color: #000E1A;
|
1635
|
+
color: #F8F8F8;
|
1636
|
+
}
|
1637
|
+
pre.cobalt .CssPropertyValue {
|
1638
|
+
color: #F6F080;
|
1639
|
+
}
|
1640
|
+
pre.cobalt .CCPreprocessorDirective {
|
1641
|
+
color: #AFC4DB;
|
1642
|
+
}
|
1643
|
+
pre.cobalt .Constant {
|
1644
|
+
color: #FF628C;
|
1645
|
+
}
|
1646
|
+
pre.cobalt .List {
|
1647
|
+
background-color: #130D26;
|
1648
|
+
}
|
1649
|
+
pre.cobalt .DiffChanged {
|
1650
|
+
background-color: #806F00;
|
1651
|
+
color: #F8F8F8;
|
1652
|
+
}
|
1653
|
+
pre.cobalt .EmbeddedSource {
|
1654
|
+
background-color: #223545;
|
1655
|
+
color: #FFFFFF;
|
1656
|
+
}
|
1657
|
+
pre.cobalt .Support {
|
1658
|
+
color: #80FFBB;
|
1659
|
+
}
|
1660
|
+
pre.cobalt .Punctuation {
|
1661
|
+
color: #E1EFFF;
|
1662
|
+
}
|
1663
|
+
pre.cobalt .RawMarkup {
|
1664
|
+
background-color: #74B9D3;
|
1665
|
+
}
|
1666
|
+
pre.cobalt .CssConstructorArgument {
|
1667
|
+
color: #EB939A;
|
1668
|
+
}
|
1669
|
+
pre.cobalt .LangVariable {
|
1670
|
+
color: #FF80E1;
|
1671
|
+
}
|
1672
|
+
pre.cobalt .Storage {
|
1673
|
+
color: #FFEE80;
|
1674
|
+
}
|
1675
|
+
pre.cobalt .line-numbers {
|
1676
|
+
background-color: #B36539;
|
1677
|
+
color: #000000;
|
1678
|
+
}
|
1679
|
+
pre.cobalt .CssClass {
|
1680
|
+
color: #5FE461;
|
1681
|
+
}
|
1682
|
+
pre.cobalt .StringConstant {
|
1683
|
+
color: #80FF82;
|
1684
|
+
}
|
1685
|
+
pre.cobalt .CssAtRule {
|
1686
|
+
color: #F6AA11;
|
1687
|
+
}
|
1688
|
+
pre.cobalt .BoldMarkup {
|
1689
|
+
font-weight: bold;
|
1690
|
+
color: #C1AFFF;
|
1691
|
+
}
|
1692
|
+
pre.cobalt .CssTagName {
|
1693
|
+
color: #9EFFFF;
|
1694
|
+
}
|
1695
|
+
pre.cobalt .Exception {
|
1696
|
+
color: #FF1E00;
|
1697
|
+
}
|
1698
|
+
pre.cobalt .SupportConstant {
|
1699
|
+
color: #EB939A;
|
1700
|
+
}
|
1701
|
+
pre.cobalt .ItalicMarkup {
|
1702
|
+
color: #B8FFD9;
|
1703
|
+
font-style: italic;
|
1704
|
+
}
|
1705
|
+
pre.cobalt .DiffDeleted {
|
1706
|
+
background-color: #4C0900;
|
1707
|
+
color: #F8F8F8;
|
1708
|
+
}
|
1709
|
+
pre.cobalt .CCPreprocessorLine {
|
1710
|
+
color: #8996A8;
|
1711
|
+
}
|
1712
|
+
pre.cobalt .SupportFunction {
|
1713
|
+
color: #FFB054;
|
1714
|
+
}
|
1715
|
+
pre.cobalt .CssAdditionalConstants {
|
1716
|
+
color: #EDF080;
|
1717
|
+
}
|
1718
|
+
pre.cobalt .MetaTagA {
|
1719
|
+
color: #9EFFFF;
|
1720
|
+
}
|
1721
|
+
pre.cobalt .StringRegexp {
|
1722
|
+
color: #80FFC2;
|
1723
|
+
}
|
1724
|
+
pre.cobalt .StringEmbeddedSource {
|
1725
|
+
color: #9EFF80;
|
1726
|
+
}
|
1727
|
+
pre.cobalt .EntityInheritedClass {
|
1728
|
+
color: #80FCFF;
|
1729
|
+
font-style: italic;
|
1730
|
+
}
|
1731
|
+
pre.cobalt .FunctionCall {
|
1732
|
+
color: #FFEE80;
|
1733
|
+
}
|
1734
|
+
pre.cobalt {
|
1735
|
+
background-color: #002240;
|
1736
|
+
color: #FFFFFF;
|
1737
|
+
}
|
1738
|
+
pre.cobalt .CssId {
|
1739
|
+
color: #FFB454;
|
1740
|
+
}
|
1741
|
+
pre.cobalt .StringVariable {
|
1742
|
+
color: #EDEF7D;
|
1743
|
+
}
|
1744
|
+
pre.cobalt .Invalid {
|
1745
|
+
background-color: #800F00;
|
1746
|
+
color: #F8F8F8;
|
1747
|
+
}
|
1748
|
+
pre.cobalt .String {
|
1749
|
+
color: #3AD900;
|
1750
|
+
}
|
1751
|
+
pre.cobalt .Keyword {
|
1752
|
+
color: #FF9D00;
|
1753
|
+
}
|
1754
|
+
pre.cobalt .HeadingMarkup {
|
1755
|
+
font-weight: bold;
|
1756
|
+
background-color: #001221;
|
1757
|
+
color: #C8E4FD;
|
1758
|
+
}
|
1759
|
+
pre.cobalt .CssPropertyName {
|
1760
|
+
color: #9DF39F;
|
1761
|
+
}
|
1762
|
+
pre.cobalt .DoctypeXmlProcessing {
|
1763
|
+
color: #73817D;
|
1764
|
+
}
|
1765
|
+
pre.cobalt .Variable {
|
1766
|
+
color: #CCCCCC;
|
1767
|
+
}
|
1768
|
+
pre.cobalt .Comment {
|
1769
|
+
color: #0088FF;
|
1770
|
+
font-style: italic;
|
1771
|
+
}
|
1772
|
+
pre.cobalt .Entity {
|
1773
|
+
color: #FFDD00;
|
1774
|
+
}
|
1775
|
+
pre.dawn .MetaSeparator {
|
1776
|
+
font-weight: bold;
|
1777
|
+
background-color: #DCDCDC;
|
1778
|
+
color: #19356D;
|
1779
|
+
}
|
1780
|
+
pre.dawn .SupportVariable {
|
1781
|
+
color: #234A97;
|
1782
|
+
}
|
1783
|
+
pre.dawn .Constant {
|
1784
|
+
font-weight: bold;
|
1785
|
+
color: #811F24;
|
1786
|
+
}
|
1787
|
+
pre.dawn .EmbeddedSource {
|
1788
|
+
background-color: #829AC2;
|
1789
|
+
}
|
1790
|
+
pre.dawn .StringRegexpConstantCharacterEscape {
|
1791
|
+
font-weight: bold;
|
1792
|
+
color: #811F24;
|
1793
|
+
}
|
1794
|
+
pre.dawn .Support {
|
1795
|
+
color: #691C97;
|
1796
|
+
}
|
1797
|
+
pre.dawn .MarkupList {
|
1798
|
+
color: #693A17;
|
1799
|
+
}
|
1800
|
+
pre.dawn .Storage {
|
1801
|
+
color: #A71D5D;
|
1802
|
+
font-style: italic;
|
1803
|
+
}
|
1804
|
+
pre.dawn .line-numbers {
|
1805
|
+
background-color: #7496CF;
|
1806
|
+
color: #000000;
|
1807
|
+
}
|
1808
|
+
pre.dawn .StringConstant {
|
1809
|
+
font-weight: bold;
|
1810
|
+
color: #696969;
|
1811
|
+
}
|
1812
|
+
pre.dawn .MarkupUnderline {
|
1813
|
+
text-decoration: underline;
|
1814
|
+
color: #080808;
|
1815
|
+
}
|
1816
|
+
pre.dawn .MarkupHeading {
|
1817
|
+
font-weight: bold;
|
1818
|
+
color: #19356D;
|
1819
|
+
}
|
1820
|
+
pre.dawn .SupportConstant {
|
1821
|
+
color: #B4371F;
|
1822
|
+
}
|
1823
|
+
pre.dawn .MarkupQuote {
|
1824
|
+
background-color: #C5C5C5;
|
1825
|
+
color: #0B6125;
|
1826
|
+
font-style: italic;
|
1827
|
+
}
|
1828
|
+
pre.dawn .StringRegexpSpecial {
|
1829
|
+
font-weight: bold;
|
1830
|
+
color: #CF5628;
|
1831
|
+
}
|
1832
|
+
pre.dawn .InvalidIllegal {
|
1833
|
+
background-color: #B52A1D;
|
1834
|
+
color: #F8F8F8;
|
1835
|
+
font-style: italic;
|
1836
|
+
}
|
1837
|
+
pre.dawn .MarkupDeleted {
|
1838
|
+
color: #B52A1D;
|
1839
|
+
}
|
1840
|
+
pre.dawn .MarkupRaw {
|
1841
|
+
background-color: #C5C5C5;
|
1842
|
+
color: #234A97;
|
1843
|
+
}
|
1844
|
+
pre.dawn .SupportFunction {
|
1845
|
+
color: #693A17;
|
1846
|
+
}
|
1847
|
+
pre.dawn .PunctuationSeparator {
|
1848
|
+
color: #794938;
|
1849
|
+
}
|
1850
|
+
pre.dawn .StringRegexp {
|
1851
|
+
color: #CF5628;
|
1852
|
+
}
|
1853
|
+
pre.dawn .StringEmbeddedSource {
|
1854
|
+
background-color: #829AC2;
|
1855
|
+
color: #080808;
|
1856
|
+
}
|
1857
|
+
pre.dawn .MarkupLink {
|
1858
|
+
color: #234A97;
|
1859
|
+
font-style: italic;
|
1860
|
+
}
|
1861
|
+
pre.dawn .MarkupBold {
|
1862
|
+
font-weight: bold;
|
1863
|
+
color: #080808;
|
1864
|
+
}
|
1865
|
+
pre.dawn .StringVariable {
|
1866
|
+
color: #234A97;
|
1867
|
+
}
|
1868
|
+
pre.dawn .String {
|
1869
|
+
color: #0B6125;
|
1870
|
+
}
|
1871
|
+
pre.dawn .Keyword {
|
1872
|
+
color: #794938;
|
1873
|
+
}
|
1874
|
+
pre.dawn {
|
1875
|
+
background-color: #F5F5F5;
|
1876
|
+
color: #080808;
|
1877
|
+
}
|
1878
|
+
pre.dawn .MarkupItalic {
|
1879
|
+
color: #080808;
|
1880
|
+
font-style: italic;
|
1881
|
+
}
|
1882
|
+
pre.dawn .InvalidDeprecated {
|
1883
|
+
font-weight: bold;
|
1884
|
+
color: #B52A1D;
|
1885
|
+
}
|
1886
|
+
pre.dawn .Variable {
|
1887
|
+
color: #234A97;
|
1888
|
+
}
|
1889
|
+
pre.dawn .Entity {
|
1890
|
+
color: #BF4F24;
|
1891
|
+
}
|
1892
|
+
pre.dawn .Comment {
|
1893
|
+
color: #5A525F;
|
1894
|
+
font-style: italic;
|
1895
|
+
}
|
1896
|
+
pre.eiffel .EmbeddedSource {
|
1897
|
+
background-color: #6597F6;
|
1898
|
+
}
|
1899
|
+
pre.eiffel .LibraryObject {
|
1900
|
+
font-weight: bold;
|
1901
|
+
color: #6D79DE;
|
1902
|
+
}
|
1903
|
+
pre.eiffel .Section {
|
1904
|
+
font-style: italic;
|
1905
|
+
}
|
1906
|
+
pre.eiffel .FunctionArgumentAndResultTypes {
|
1907
|
+
color: #70727E;
|
1908
|
+
}
|
1909
|
+
pre.eiffel .TypeName {
|
1910
|
+
font-style: italic;
|
1911
|
+
}
|
1912
|
+
pre.eiffel .Number {
|
1913
|
+
color: #CD0000;
|
1914
|
+
font-style: italic;
|
1915
|
+
}
|
1916
|
+
pre.eiffel .MarkupList {
|
1917
|
+
color: #B90690;
|
1918
|
+
}
|
1919
|
+
pre.eiffel .MarkupTagAttribute {
|
1920
|
+
font-style: italic;
|
1921
|
+
}
|
1922
|
+
pre.eiffel .LibraryVariable {
|
1923
|
+
font-weight: bold;
|
1924
|
+
color: #21439C;
|
1925
|
+
}
|
1926
|
+
pre.eiffel .line-numbers {
|
1927
|
+
background-color: #C3DCFF;
|
1928
|
+
color: #000000;
|
1929
|
+
}
|
1930
|
+
pre.eiffel .FunctionParameter {
|
1931
|
+
font-style: italic;
|
1932
|
+
}
|
1933
|
+
pre.eiffel .MarkupTag {
|
1934
|
+
color: #1C02FF;
|
1935
|
+
}
|
1936
|
+
pre.eiffel {
|
1937
|
+
background-color: #FFFFFF;
|
1938
|
+
color: #000000;
|
1939
|
+
}
|
1940
|
+
pre.eiffel .MarkupHeading {
|
1941
|
+
font-weight: bold;
|
1942
|
+
color: #0C07FF;
|
1943
|
+
}
|
1944
|
+
pre.eiffel .JsOperator {
|
1945
|
+
color: #687687;
|
1946
|
+
}
|
1947
|
+
pre.eiffel .InheritedClassName {
|
1948
|
+
font-style: italic;
|
1949
|
+
}
|
1950
|
+
pre.eiffel .StringInterpolation {
|
1951
|
+
color: #26B31A;
|
1952
|
+
}
|
1953
|
+
pre.eiffel .MarkupQuote {
|
1954
|
+
color: #000000;
|
1955
|
+
font-style: italic;
|
1956
|
+
}
|
1957
|
+
pre.eiffel .MarkupNameOfTag {
|
1958
|
+
font-weight: bold;
|
1959
|
+
}
|
1960
|
+
pre.eiffel .InvalidTrailingWhitespace {
|
1961
|
+
background-color: #FFD0D0;
|
1962
|
+
}
|
1963
|
+
pre.eiffel .LibraryConstant {
|
1964
|
+
font-weight: bold;
|
1965
|
+
color: #06960E;
|
1966
|
+
}
|
1967
|
+
pre.eiffel .MarkupXmlDeclaration {
|
1968
|
+
color: #68685B;
|
1969
|
+
}
|
1970
|
+
pre.eiffel .PreprocessorDirective {
|
1971
|
+
font-weight: bold;
|
1972
|
+
color: #0C450D;
|
1973
|
+
}
|
1974
|
+
pre.eiffel .BuiltInConstant {
|
1975
|
+
color: #585CF6;
|
1976
|
+
font-style: italic;
|
1977
|
+
}
|
1978
|
+
pre.eiffel .MarkupDtd {
|
1979
|
+
font-style: italic;
|
1980
|
+
}
|
1981
|
+
pre.eiffel .Invalid {
|
1982
|
+
background-color: #990000;
|
1983
|
+
color: #FFFFFF;
|
1984
|
+
}
|
1985
|
+
pre.eiffel .LibraryFunction {
|
1986
|
+
font-weight: bold;
|
1987
|
+
color: #3C4C72;
|
1988
|
+
}
|
1989
|
+
pre.eiffel .String {
|
1990
|
+
color: #D80800;
|
1991
|
+
}
|
1992
|
+
pre.eiffel .UserDefinedConstant {
|
1993
|
+
color: #C5060B;
|
1994
|
+
font-style: italic;
|
1995
|
+
}
|
1996
|
+
pre.eiffel .Keyword {
|
1997
|
+
font-weight: bold;
|
1998
|
+
color: #0100B6;
|
1999
|
+
}
|
2000
|
+
pre.eiffel .MarkupDoctype {
|
2001
|
+
color: #888888;
|
2002
|
+
}
|
2003
|
+
pre.eiffel .FunctionName {
|
2004
|
+
font-weight: bold;
|
2005
|
+
color: #0000A2;
|
2006
|
+
}
|
2007
|
+
pre.eiffel .PreprocessorLine {
|
2008
|
+
color: #1A921C;
|
2009
|
+
}
|
2010
|
+
pre.eiffel .Variable {
|
2011
|
+
color: #0206FF;
|
2012
|
+
font-style: italic;
|
2013
|
+
}
|
2014
|
+
pre.eiffel .Comment {
|
2015
|
+
color: #00B418;
|
2016
|
+
}
|
2017
|
+
pre.espresso_libre .EmbeddedSource {
|
2018
|
+
background-color: #CE9065;
|
2019
|
+
}
|
2020
|
+
pre.espresso_libre .LibraryObject {
|
2021
|
+
font-weight: bold;
|
2022
|
+
color: #6D79DE;
|
2023
|
+
}
|
2024
|
+
pre.espresso_libre .Section {
|
2025
|
+
font-style: italic;
|
2026
|
+
}
|
2027
|
+
pre.espresso_libre .FunctionArgumentAndResultTypes {
|
2028
|
+
color: #8B8E9C;
|
2029
|
+
}
|
2030
|
+
pre.espresso_libre .TypeName {
|
2031
|
+
text-decoration: underline;
|
2032
|
+
}
|
2033
|
+
pre.espresso_libre .Number {
|
2034
|
+
color: #44AA43;
|
2035
|
+
}
|
2036
|
+
pre.espresso_libre {
|
2037
|
+
background-color: #2A211C;
|
2038
|
+
color: #BDAE9D;
|
2039
|
+
}
|
2040
|
+
pre.espresso_libre .MarkupTagAttribute {
|
2041
|
+
font-style: italic;
|
2042
|
+
}
|
2043
|
+
pre.espresso_libre .LibraryVariable {
|
2044
|
+
font-weight: bold;
|
2045
|
+
color: #2F5FE0;
|
2046
|
+
}
|
2047
|
+
pre.espresso_libre .line-numbers {
|
2048
|
+
background-color: #C3DCFF;
|
2049
|
+
color: #000000;
|
2050
|
+
}
|
2051
|
+
pre.espresso_libre .FunctionParameter {
|
2052
|
+
font-style: italic;
|
2053
|
+
}
|
2054
|
+
pre.espresso_libre .MarkupTag {
|
2055
|
+
color: #43A8ED;
|
2056
|
+
}
|
2057
|
+
pre.espresso_libre .JsOperator {
|
2058
|
+
color: #687687;
|
2059
|
+
}
|
2060
|
+
pre.espresso_libre .InheritedClassName {
|
2061
|
+
font-style: italic;
|
2062
|
+
}
|
2063
|
+
pre.espresso_libre .StringInterpolation {
|
2064
|
+
color: #2FE420;
|
2065
|
+
}
|
2066
|
+
pre.espresso_libre .MarkupNameOfTag {
|
2067
|
+
font-weight: bold;
|
2068
|
+
}
|
2069
|
+
pre.espresso_libre .InvalidTrailingWhitespace {
|
2070
|
+
background-color: #FFD0D0;
|
2071
|
+
}
|
2072
|
+
pre.espresso_libre .LibraryConstant {
|
2073
|
+
font-weight: bold;
|
2074
|
+
color: #00AF0E;
|
2075
|
+
}
|
2076
|
+
pre.espresso_libre .MarkupXmlDeclaration {
|
2077
|
+
color: #8F7E65;
|
2078
|
+
}
|
2079
|
+
pre.espresso_libre .PreprocessorDirective {
|
2080
|
+
font-weight: bold;
|
2081
|
+
color: #9AFF87;
|
2082
|
+
}
|
2083
|
+
pre.espresso_libre .BuiltInConstant {
|
2084
|
+
font-weight: bold;
|
2085
|
+
color: #585CF6;
|
2086
|
+
}
|
2087
|
+
pre.espresso_libre .MarkupDtd {
|
2088
|
+
font-style: italic;
|
2089
|
+
}
|
2090
|
+
pre.espresso_libre .Invalid {
|
2091
|
+
background-color: #990000;
|
2092
|
+
color: #FFFFFF;
|
2093
|
+
}
|
2094
|
+
pre.espresso_libre .LibraryFunction {
|
2095
|
+
font-weight: bold;
|
2096
|
+
color: #7290D9;
|
2097
|
+
}
|
2098
|
+
pre.espresso_libre .String {
|
2099
|
+
color: #049B0A;
|
2100
|
+
}
|
2101
|
+
pre.espresso_libre .UserDefinedConstant {
|
2102
|
+
font-weight: bold;
|
2103
|
+
color: #C5656B;
|
2104
|
+
}
|
2105
|
+
pre.espresso_libre .Keyword {
|
2106
|
+
font-weight: bold;
|
2107
|
+
color: #43A8ED;
|
2108
|
+
}
|
2109
|
+
pre.espresso_libre .MarkupDoctype {
|
2110
|
+
color: #888888;
|
2111
|
+
}
|
2112
|
+
pre.espresso_libre .FunctionName {
|
2113
|
+
font-weight: bold;
|
2114
|
+
color: #FF9358;
|
2115
|
+
}
|
2116
|
+
pre.espresso_libre .PreprocessorLine {
|
2117
|
+
color: #1A921C;
|
2118
|
+
}
|
2119
|
+
pre.espresso_libre .Variable {
|
2120
|
+
color: #318495;
|
2121
|
+
}
|
2122
|
+
pre.espresso_libre .Comment {
|
2123
|
+
color: #0066FF;
|
2124
|
+
font-style: italic;
|
2125
|
+
}
|
2126
|
+
pre.idle .InheritedClass {
|
2127
|
+
}
|
2128
|
+
pre.idle .TypeName {
|
2129
|
+
color: #21439C;
|
2130
|
+
}
|
2131
|
+
pre.idle .Number {
|
2132
|
+
}
|
2133
|
+
pre.idle .LibraryVariable {
|
2134
|
+
color: #A535AE;
|
2135
|
+
}
|
2136
|
+
pre.idle .Storage {
|
2137
|
+
color: #FF5600;
|
2138
|
+
}
|
2139
|
+
pre.idle .line-numbers {
|
2140
|
+
background-color: #BAD6FD;
|
2141
|
+
color: #000000;
|
2142
|
+
}
|
2143
|
+
pre.idle {
|
2144
|
+
background-color: #FFFFFF;
|
2145
|
+
color: #000000;
|
2146
|
+
}
|
2147
|
+
pre.idle .StringInterpolation {
|
2148
|
+
color: #990000;
|
2149
|
+
}
|
2150
|
+
pre.idle .TagName {
|
2151
|
+
}
|
2152
|
+
pre.idle .LibraryConstant {
|
2153
|
+
color: #A535AE;
|
2154
|
+
}
|
2155
|
+
pre.idle .FunctionArgument {
|
2156
|
+
}
|
2157
|
+
pre.idle .BuiltInConstant {
|
2158
|
+
color: #A535AE;
|
2159
|
+
}
|
2160
|
+
pre.idle .Invalid {
|
2161
|
+
background-color: #990000;
|
2162
|
+
color: #FFFFFF;
|
2163
|
+
}
|
2164
|
+
pre.idle .LibraryClassType {
|
2165
|
+
color: #A535AE;
|
2166
|
+
}
|
2167
|
+
pre.idle .LibraryFunction {
|
2168
|
+
color: #A535AE;
|
2169
|
+
}
|
2170
|
+
pre.idle .TagAttribute {
|
2171
|
+
}
|
2172
|
+
pre.idle .Keyword {
|
2173
|
+
color: #FF5600;
|
2174
|
+
}
|
2175
|
+
pre.idle .UserDefinedConstant {
|
2176
|
+
}
|
2177
|
+
pre.idle .String {
|
2178
|
+
color: #00A33F;
|
2179
|
+
}
|
2180
|
+
pre.idle .FunctionName {
|
2181
|
+
color: #21439C;
|
2182
|
+
}
|
2183
|
+
pre.idle .Variable {
|
2184
|
+
}
|
2185
|
+
pre.idle .Comment {
|
2186
|
+
color: #919191;
|
2187
|
+
}
|
2188
|
+
pre.iplastic .Constant {
|
2189
|
+
color: #6782D3;
|
2190
|
+
}
|
2191
|
+
pre.iplastic .Support {
|
2192
|
+
font-weight: bold;
|
2193
|
+
color: #3333FF;
|
2194
|
+
}
|
2195
|
+
pre.iplastic .EmbeddedSource {
|
2196
|
+
background-color: #F9F9F9;
|
2197
|
+
color: #000000;
|
2198
|
+
}
|
2199
|
+
pre.iplastic .Arguments {
|
2200
|
+
font-style: italic;
|
2201
|
+
}
|
2202
|
+
pre.iplastic .TypeName {
|
2203
|
+
font-weight: bold;
|
2204
|
+
}
|
2205
|
+
pre.iplastic .Identifier {
|
2206
|
+
color: #9700CC;
|
2207
|
+
}
|
2208
|
+
pre.iplastic .Number {
|
2209
|
+
color: #0066FF;
|
2210
|
+
}
|
2211
|
+
pre.iplastic .SectionName {
|
2212
|
+
font-weight: bold;
|
2213
|
+
}
|
2214
|
+
pre.iplastic .Storage {
|
2215
|
+
font-weight: bold;
|
2216
|
+
}
|
2217
|
+
pre.iplastic .line-numbers {
|
2218
|
+
background-color: #BAD6FD;
|
2219
|
+
color: #000000;
|
2220
|
+
}
|
2221
|
+
pre.iplastic {
|
2222
|
+
background-color: #EEEEEE;
|
2223
|
+
color: #000000;
|
2224
|
+
}
|
2225
|
+
pre.iplastic .FrameTitle {
|
2226
|
+
font-weight: bold;
|
2227
|
+
color: #000000;
|
2228
|
+
}
|
2229
|
+
pre.iplastic .TagName {
|
2230
|
+
font-weight: bold;
|
2231
|
+
}
|
2232
|
+
pre.iplastic .Tag {
|
2233
|
+
color: #0033CC;
|
2234
|
+
}
|
2235
|
+
pre.iplastic .Exception {
|
2236
|
+
color: #990000;
|
2237
|
+
}
|
2238
|
+
pre.iplastic .XmlDeclaration {
|
2239
|
+
color: #333333;
|
2240
|
+
}
|
2241
|
+
pre.iplastic .TrailingWhitespace {
|
2242
|
+
background-color: #EEEEEE;
|
2243
|
+
}
|
2244
|
+
pre.iplastic .TagAttribute {
|
2245
|
+
color: #3366CC;
|
2246
|
+
font-style: italic;
|
2247
|
+
}
|
2248
|
+
pre.iplastic .Invalid {
|
2249
|
+
background-color: #E7342D;
|
2250
|
+
color: #FF0000;
|
2251
|
+
}
|
2252
|
+
pre.iplastic .Keyword {
|
2253
|
+
color: #0000FF;
|
2254
|
+
}
|
2255
|
+
pre.iplastic .String {
|
2256
|
+
color: #009933;
|
2257
|
+
}
|
2258
|
+
pre.iplastic .Comment {
|
2259
|
+
color: #0066FF;
|
2260
|
+
font-style: italic;
|
2261
|
+
}
|
2262
|
+
pre.iplastic .FunctionName {
|
2263
|
+
color: #FF8000;
|
2264
|
+
}
|
2265
|
+
pre.iplastic .RegularExpression {
|
2266
|
+
color: #FF0080;
|
2267
|
+
}
|
2268
|
+
pre.lazy .OcamlInfixFPOperator {
|
2269
|
+
text-decoration: underline;
|
2270
|
+
}
|
2271
|
+
pre.lazy .OcamlInfixOperator {
|
2272
|
+
color: #3B5BB5;
|
2273
|
+
}
|
2274
|
+
pre.lazy .MetaFunctionCallPy {
|
2275
|
+
color: #3E4558;
|
2276
|
+
}
|
2277
|
+
pre.lazy .Superclass {
|
2278
|
+
color: #3B5BB5;
|
2279
|
+
font-style: italic;
|
2280
|
+
}
|
2281
|
+
pre.lazy .LatexEntity {
|
2282
|
+
color: #D62A28;
|
2283
|
+
}
|
2284
|
+
pre.lazy .Constant {
|
2285
|
+
color: #3B5BB5;
|
2286
|
+
}
|
2287
|
+
pre.lazy .OcamlFPConstant {
|
2288
|
+
text-decoration: underline;
|
2289
|
+
}
|
2290
|
+
pre.lazy .Support {
|
2291
|
+
color: #3B5BB5;
|
2292
|
+
}
|
2293
|
+
pre.lazy .OcamlOperator {
|
2294
|
+
color: #000000;
|
2295
|
+
}
|
2296
|
+
pre.lazy .line-numbers {
|
2297
|
+
background-color: #E3FC8D;
|
2298
|
+
color: #000000;
|
2299
|
+
}
|
2300
|
+
pre.lazy .StringInterpolation {
|
2301
|
+
color: #671EBB;
|
2302
|
+
}
|
2303
|
+
pre.lazy .InvalidIllegal {
|
2304
|
+
background-color: #9D1E15;
|
2305
|
+
color: #F8F8F8;
|
2306
|
+
}
|
2307
|
+
pre.lazy .OcamlVariant {
|
2308
|
+
color: #7F90AA;
|
2309
|
+
}
|
2310
|
+
pre.lazy .MetaTag {
|
2311
|
+
color: #3A4A64;
|
2312
|
+
}
|
2313
|
+
pre.lazy .OcamlPrefixFPOperator {
|
2314
|
+
text-decoration: underline;
|
2315
|
+
}
|
2316
|
+
pre.lazy .OcamlPrefixOperator {
|
2317
|
+
color: #3B5BB5;
|
2318
|
+
}
|
2319
|
+
pre.lazy .String {
|
2320
|
+
color: #409B1C;
|
2321
|
+
}
|
2322
|
+
pre.lazy .Keyword {
|
2323
|
+
color: #FF7800;
|
2324
|
+
}
|
2325
|
+
pre.lazy {
|
2326
|
+
background-color: #FFFFFF;
|
2327
|
+
color: #000000;
|
2328
|
+
}
|
2329
|
+
pre.lazy .InvalidDeprecated {
|
2330
|
+
color: #990000;
|
2331
|
+
font-style: italic;
|
2332
|
+
}
|
2333
|
+
pre.lazy .Variable {
|
2334
|
+
}
|
2335
|
+
pre.lazy .Entity {
|
2336
|
+
color: #3B5BB5;
|
2337
|
+
}
|
2338
|
+
pre.lazy .Comment {
|
2339
|
+
color: #8C868F;
|
2340
|
+
}
|
2341
|
+
pre.mac_classic .EmbeddedSource {
|
2342
|
+
background-color: #0C0C0C;
|
2343
|
+
}
|
2344
|
+
pre.mac_classic .LibraryObject {
|
2345
|
+
font-weight: bold;
|
2346
|
+
color: #6D79DE;
|
2347
|
+
}
|
2348
|
+
pre.mac_classic .Section {
|
2349
|
+
font-style: italic;
|
2350
|
+
}
|
2351
|
+
pre.mac_classic .FunctionArgumentAndResultTypes {
|
2352
|
+
color: #70727E;
|
2353
|
+
}
|
2354
|
+
pre.mac_classic .TypeName {
|
2355
|
+
text-decoration: underline;
|
2356
|
+
}
|
2357
|
+
pre.mac_classic .Number {
|
2358
|
+
color: #0000CD;
|
2359
|
+
}
|
2360
|
+
pre.mac_classic {
|
2361
|
+
background-color: #FFFFFF;
|
2362
|
+
color: #000000;
|
2363
|
+
}
|
2364
|
+
pre.mac_classic .MarkupList {
|
2365
|
+
color: #B90690;
|
2366
|
+
}
|
2367
|
+
pre.mac_classic .MarkupTagAttribute {
|
2368
|
+
font-style: italic;
|
2369
|
+
}
|
2370
|
+
pre.mac_classic .LibraryVariable {
|
2371
|
+
font-weight: bold;
|
2372
|
+
color: #21439C;
|
2373
|
+
}
|
2374
|
+
pre.mac_classic .line-numbers {
|
2375
|
+
background-color: #4D97FF;
|
2376
|
+
color: #000000;
|
2377
|
+
}
|
2378
|
+
pre.mac_classic .FunctionParameter {
|
2379
|
+
font-style: italic;
|
2380
|
+
}
|
2381
|
+
pre.mac_classic .MarkupTag {
|
2382
|
+
color: #1C02FF;
|
2383
|
+
}
|
2384
|
+
pre.mac_classic .MarkupHeading {
|
2385
|
+
font-weight: bold;
|
2386
|
+
color: #0C07FF;
|
2387
|
+
}
|
2388
|
+
pre.mac_classic .JsOperator {
|
2389
|
+
color: #687687;
|
2390
|
+
}
|
2391
|
+
pre.mac_classic .InheritedClassName {
|
2392
|
+
font-style: italic;
|
2393
|
+
}
|
2394
|
+
pre.mac_classic .StringInterpolation {
|
2395
|
+
color: #26B31A;
|
2396
|
+
}
|
2397
|
+
pre.mac_classic .MarkupQuote {
|
2398
|
+
color: #000000;
|
2399
|
+
font-style: italic;
|
2400
|
+
}
|
2401
|
+
pre.mac_classic .MarkupNameOfTag {
|
2402
|
+
font-weight: bold;
|
2403
|
+
}
|
2404
|
+
pre.mac_classic .InvalidTrailingWhitespace {
|
2405
|
+
background-color: #FFD0D0;
|
2406
|
+
}
|
2407
|
+
pre.mac_classic .LibraryConstant {
|
2408
|
+
font-weight: bold;
|
2409
|
+
color: #06960E;
|
2410
|
+
}
|
2411
|
+
pre.mac_classic .MarkupXmlDeclaration {
|
2412
|
+
color: #68685B;
|
2413
|
+
}
|
2414
|
+
pre.mac_classic .EmbeddedEmbeddedSource {
|
2415
|
+
background-color: #0E0E0E;
|
2416
|
+
}
|
2417
|
+
pre.mac_classic .PreprocessorDirective {
|
2418
|
+
font-weight: bold;
|
2419
|
+
color: #0C450D;
|
2420
|
+
}
|
2421
|
+
pre.mac_classic .BuiltInConstant {
|
2422
|
+
font-weight: bold;
|
2423
|
+
color: #585CF6;
|
2424
|
+
}
|
2425
|
+
pre.mac_classic .MarkupDtd {
|
2426
|
+
font-style: italic;
|
2427
|
+
}
|
2428
|
+
pre.mac_classic .Invalid {
|
2429
|
+
background-color: #990000;
|
2430
|
+
color: #FFFFFF;
|
2431
|
+
}
|
2432
|
+
pre.mac_classic .LibraryFunction {
|
2433
|
+
font-weight: bold;
|
2434
|
+
color: #3C4C72;
|
2435
|
+
}
|
2436
|
+
pre.mac_classic .String {
|
2437
|
+
color: #036A07;
|
2438
|
+
}
|
2439
|
+
pre.mac_classic .UserDefinedConstant {
|
2440
|
+
font-weight: bold;
|
2441
|
+
color: #C5060B;
|
2442
|
+
}
|
2443
|
+
pre.mac_classic .Keyword {
|
2444
|
+
font-weight: bold;
|
2445
|
+
color: #0000FF;
|
2446
|
+
}
|
2447
|
+
pre.mac_classic .MarkupDoctype {
|
2448
|
+
color: #888888;
|
2449
|
+
}
|
2450
|
+
pre.mac_classic .FunctionName {
|
2451
|
+
font-weight: bold;
|
2452
|
+
color: #0000A2;
|
2453
|
+
}
|
2454
|
+
pre.mac_classic .PreprocessorLine {
|
2455
|
+
color: #1A921C;
|
2456
|
+
}
|
2457
|
+
pre.mac_classic .Variable {
|
2458
|
+
color: #318495;
|
2459
|
+
}
|
2460
|
+
pre.mac_classic .Comment {
|
2461
|
+
color: #0066FF;
|
2462
|
+
font-style: italic;
|
2463
|
+
}
|
2464
|
+
pre.magicwb_amiga .MarkupQuoteEmail {
|
2465
|
+
color: #00F0C9;
|
2466
|
+
}
|
2467
|
+
pre.magicwb_amiga .EmbeddedSource {
|
2468
|
+
background-color: #8A9ECB;
|
2469
|
+
}
|
2470
|
+
pre.magicwb_amiga .InheritedClass {
|
2471
|
+
font-style: italic;
|
2472
|
+
}
|
2473
|
+
pre.magicwb_amiga .TypeName {
|
2474
|
+
text-decoration: underline;
|
2475
|
+
}
|
2476
|
+
pre.magicwb_amiga .Number {
|
2477
|
+
color: #FFFFFF;
|
2478
|
+
}
|
2479
|
+
pre.magicwb_amiga .LibraryVariable {
|
2480
|
+
color: #3A68A3;
|
2481
|
+
}
|
2482
|
+
pre.magicwb_amiga .Storage {
|
2483
|
+
font-weight: bold;
|
2484
|
+
color: #3A68A3;
|
2485
|
+
}
|
2486
|
+
pre.magicwb_amiga .line-numbers {
|
2487
|
+
background-color: #B1B1B1;
|
2488
|
+
color: #000000;
|
2489
|
+
}
|
2490
|
+
pre.magicwb_amiga .IncludeUser {
|
2491
|
+
background-color: #969696;
|
2492
|
+
color: #FFA995;
|
2493
|
+
}
|
2494
|
+
pre.magicwb_amiga .ObjectiveCMethodCall {
|
2495
|
+
color: #000000;
|
2496
|
+
}
|
2497
|
+
pre.magicwb_amiga .ConstantUserDefined {
|
2498
|
+
background-color: #1D1DEA;
|
2499
|
+
color: #FFA995;
|
2500
|
+
}
|
2501
|
+
pre.magicwb_amiga .LibraryConstant {
|
2502
|
+
color: #FFFFFF;
|
2503
|
+
}
|
2504
|
+
pre.magicwb_amiga .EntityName {
|
2505
|
+
font-weight: bold;
|
2506
|
+
color: #0000FF;
|
2507
|
+
}
|
2508
|
+
pre.magicwb_amiga .ConstantBuiltIn {
|
2509
|
+
font-weight: bold;
|
2510
|
+
color: #FFA995;
|
2511
|
+
}
|
2512
|
+
pre.magicwb_amiga .MarkupRaw {
|
2513
|
+
background-color: #0000FF;
|
2514
|
+
color: #FFFFFF;
|
2515
|
+
}
|
2516
|
+
pre.magicwb_amiga .MarkupListItem {
|
2517
|
+
color: #4D4E60;
|
2518
|
+
}
|
2519
|
+
pre.magicwb_amiga .FunctionArgument {
|
2520
|
+
font-style: italic;
|
2521
|
+
}
|
2522
|
+
pre.magicwb_amiga .ObjectiveCMethodCall1 {
|
2523
|
+
font-style: italic;
|
2524
|
+
}
|
2525
|
+
pre.magicwb_amiga .MarkupQuoteDoubleEmail {
|
2526
|
+
color: #4C457E;
|
2527
|
+
}
|
2528
|
+
pre.magicwb_amiga .IncludeSystem {
|
2529
|
+
background-color: #969696;
|
2530
|
+
color: #FFA995;
|
2531
|
+
font-style: italic;
|
2532
|
+
}
|
2533
|
+
pre.magicwb_amiga .Invalid {
|
2534
|
+
background-color: #797979;
|
2535
|
+
color: #FFFFFF;
|
2536
|
+
}
|
2537
|
+
pre.magicwb_amiga .LibraryClassType {
|
2538
|
+
color: #FFA995;
|
2539
|
+
}
|
2540
|
+
pre.magicwb_amiga .LibraryFunction {
|
2541
|
+
color: #E5B3FF;
|
2542
|
+
}
|
2543
|
+
pre.magicwb_amiga .TagAttribute {
|
2544
|
+
color: #3A68A3;
|
2545
|
+
font-style: italic;
|
2546
|
+
}
|
2547
|
+
pre.magicwb_amiga .Keyword {
|
2548
|
+
font-weight: bold;
|
2549
|
+
}
|
2550
|
+
pre.magicwb_amiga .String {
|
2551
|
+
background-color: #EA1D1D;
|
2552
|
+
color: #FFFFFF;
|
2553
|
+
}
|
2554
|
+
pre.magicwb_amiga {
|
2555
|
+
background-color: #969696;
|
2556
|
+
color: #000000;
|
2557
|
+
}
|
2558
|
+
pre.magicwb_amiga .FunctionName {
|
2559
|
+
color: #FFA995;
|
2560
|
+
}
|
2561
|
+
pre.magicwb_amiga .Variable {
|
2562
|
+
color: #FFA995;
|
2563
|
+
}
|
2564
|
+
pre.magicwb_amiga .Comment {
|
2565
|
+
color: #8D2E75;
|
2566
|
+
font-style: italic;
|
2567
|
+
}
|
2568
|
+
pre.pastels_on_dark .CssPropertyColours {
|
2569
|
+
color: #666633;
|
2570
|
+
}
|
2571
|
+
pre.pastels_on_dark .CssPropertyValue {
|
2572
|
+
color: #9B2E4D;
|
2573
|
+
}
|
2574
|
+
pre.pastels_on_dark .HtmlDocinfoDtd {
|
2575
|
+
font-style: italic;
|
2576
|
+
}
|
2577
|
+
pre.pastels_on_dark .Exceptions {
|
2578
|
+
font-weight: bold;
|
2579
|
+
color: #C82255;
|
2580
|
+
}
|
2581
|
+
pre.pastels_on_dark .ClassInheritance {
|
2582
|
+
font-style: italic;
|
2583
|
+
}
|
2584
|
+
pre.pastels_on_dark .CssInvalidComma {
|
2585
|
+
background-color: #FF0000;
|
2586
|
+
color: #FFFFFF;
|
2587
|
+
}
|
2588
|
+
pre.pastels_on_dark .HtmlTag {
|
2589
|
+
color: #858EF4;
|
2590
|
+
}
|
2591
|
+
pre.pastels_on_dark .Constants {
|
2592
|
+
color: #6782D3;
|
2593
|
+
}
|
2594
|
+
pre.pastels_on_dark .Section {
|
2595
|
+
font-style: italic;
|
2596
|
+
}
|
2597
|
+
pre.pastels_on_dark .PhpPhpdocs {
|
2598
|
+
color: #777777;
|
2599
|
+
}
|
2600
|
+
pre.pastels_on_dark .Variables {
|
2601
|
+
color: #C1C144;
|
2602
|
+
}
|
2603
|
+
pre.pastels_on_dark .RegularExpressions {
|
2604
|
+
color: #666666;
|
2605
|
+
}
|
2606
|
+
pre.pastels_on_dark .Comments {
|
2607
|
+
color: #555555;
|
2608
|
+
}
|
2609
|
+
pre.pastels_on_dark .line-numbers {
|
2610
|
+
background-color: #73597E;
|
2611
|
+
color: #FFFFFF;
|
2612
|
+
}
|
2613
|
+
pre.pastels_on_dark .PhpVariablesGlobals {
|
2614
|
+
color: #B72E1D;
|
2615
|
+
}
|
2616
|
+
pre.pastels_on_dark .PhpConstantsCorePredefined {
|
2617
|
+
font-weight: bold;
|
2618
|
+
color: #DE8E20;
|
2619
|
+
}
|
2620
|
+
pre.pastels_on_dark .HtmlDoctype {
|
2621
|
+
color: #888888;
|
2622
|
+
}
|
2623
|
+
pre.pastels_on_dark .HtmlDocinfoXml {
|
2624
|
+
color: #68685B;
|
2625
|
+
}
|
2626
|
+
pre.pastels_on_dark .AttributeName {
|
2627
|
+
color: #9B456F;
|
2628
|
+
}
|
2629
|
+
pre.pastels_on_dark .ClassName {
|
2630
|
+
text-decoration: underline;
|
2631
|
+
}
|
2632
|
+
pre.pastels_on_dark .FunctionArgumentName {
|
2633
|
+
font-weight: bold;
|
2634
|
+
}
|
2635
|
+
pre.pastels_on_dark .FunctionResult {
|
2636
|
+
color: #0000FF;
|
2637
|
+
}
|
2638
|
+
pre.pastels_on_dark .TmlangdefKeys {
|
2639
|
+
color: #7171F3;
|
2640
|
+
}
|
2641
|
+
pre.pastels_on_dark .CssSelectorsElements {
|
2642
|
+
font-weight: bold;
|
2643
|
+
color: #B8CD06;
|
2644
|
+
}
|
2645
|
+
pre.pastels_on_dark .CssSelectorsId {
|
2646
|
+
color: #EC9E00;
|
2647
|
+
}
|
2648
|
+
pre.pastels_on_dark .ControlStructures {
|
2649
|
+
font-weight: bold;
|
2650
|
+
color: #6969FA;
|
2651
|
+
}
|
2652
|
+
pre.pastels_on_dark .Interpolation {
|
2653
|
+
color: #C10006;
|
2654
|
+
}
|
2655
|
+
pre.pastels_on_dark .CommentsBlock {
|
2656
|
+
color: #555555;
|
2657
|
+
}
|
2658
|
+
pre.pastels_on_dark .CssSelectorsPseudoclass {
|
2659
|
+
color: #2E759C;
|
2660
|
+
}
|
2661
|
+
pre.pastels_on_dark .Operators {
|
2662
|
+
color: #47B8D6;
|
2663
|
+
}
|
2664
|
+
pre.pastels_on_dark .TagName {
|
2665
|
+
color: #858EF4;
|
2666
|
+
}
|
2667
|
+
pre.pastels_on_dark .EmbeddedCode {
|
2668
|
+
text-decoration: underline;
|
2669
|
+
}
|
2670
|
+
pre.pastels_on_dark .PhpVariablesSaferGlobals {
|
2671
|
+
color: #00FF00;
|
2672
|
+
}
|
2673
|
+
pre.pastels_on_dark .InvalidTrailingWhitespace {
|
2674
|
+
background-color: #FFD0D0;
|
2675
|
+
}
|
2676
|
+
pre.pastels_on_dark .Functions {
|
2677
|
+
color: #A1A1FF;
|
2678
|
+
}
|
2679
|
+
pre.pastels_on_dark .Keywords {
|
2680
|
+
color: #A1A1FF;
|
2681
|
+
}
|
2682
|
+
pre.pastels_on_dark {
|
2683
|
+
background-color: #211E1E;
|
2684
|
+
color: #DADADA;
|
2685
|
+
}
|
2686
|
+
pre.pastels_on_dark .PhpKeywordsStorage {
|
2687
|
+
color: #6969FA;
|
2688
|
+
}
|
2689
|
+
pre.pastels_on_dark .PhpIncludeRequire {
|
2690
|
+
color: #C82255;
|
2691
|
+
}
|
2692
|
+
pre.pastels_on_dark .HtmlAttribute {
|
2693
|
+
color: #9B456F;
|
2694
|
+
}
|
2695
|
+
pre.pastels_on_dark .AttributeWithValue {
|
2696
|
+
color: #9B456F;
|
2697
|
+
}
|
2698
|
+
pre.pastels_on_dark .FunctionArgumentType {
|
2699
|
+
color: #0000FF;
|
2700
|
+
}
|
2701
|
+
pre.pastels_on_dark .PreprocessorDirective {
|
2702
|
+
font-weight: bold;
|
2703
|
+
}
|
2704
|
+
pre.pastels_on_dark .CssUnits {
|
2705
|
+
color: #6969FA;
|
2706
|
+
}
|
2707
|
+
pre.pastels_on_dark .CssFontNames {
|
2708
|
+
color: #666633;
|
2709
|
+
}
|
2710
|
+
pre.pastels_on_dark .CssSelectorsClassname {
|
2711
|
+
color: #EDCA06;
|
2712
|
+
}
|
2713
|
+
pre.pastels_on_dark .PhpStringsSingleQuoted {
|
2714
|
+
color: #BFA36D;
|
2715
|
+
}
|
2716
|
+
pre.pastels_on_dark .PhpConstantsStandardPredefined {
|
2717
|
+
font-weight: bold;
|
2718
|
+
color: #DE8E10;
|
2719
|
+
}
|
2720
|
+
pre.pastels_on_dark .HtmlServersideIncludes {
|
2721
|
+
color: #909090;
|
2722
|
+
}
|
2723
|
+
pre.pastels_on_dark .CssPropertyKeyword {
|
2724
|
+
color: #E1C96B;
|
2725
|
+
}
|
2726
|
+
pre.pastels_on_dark .LanguageConstants {
|
2727
|
+
font-weight: bold;
|
2728
|
+
color: #DE8E30;
|
2729
|
+
}
|
2730
|
+
pre.pastels_on_dark .CharacterConstants {
|
2731
|
+
color: #AFA472;
|
2732
|
+
}
|
2733
|
+
pre.pastels_on_dark .Invalid {
|
2734
|
+
font-weight: bold;
|
2735
|
+
background-color: #FF0000;
|
2736
|
+
color: #FFF9F9;
|
2737
|
+
}
|
2738
|
+
pre.pastels_on_dark .FunctionArgumentVariable {
|
2739
|
+
font-style: italic;
|
2740
|
+
}
|
2741
|
+
pre.pastels_on_dark .Strings {
|
2742
|
+
color: #AD9361;
|
2743
|
+
}
|
2744
|
+
pre.pastels_on_dark .PhpStringsDoubleQuoted {
|
2745
|
+
color: #AD9361;
|
2746
|
+
}
|
2747
|
+
pre.pastels_on_dark .FunctionName {
|
2748
|
+
font-weight: bold;
|
2749
|
+
}
|
2750
|
+
pre.pastels_on_dark .PreprocessorLine {
|
2751
|
+
color: #2F006E;
|
2752
|
+
}
|
2753
|
+
pre.pastels_on_dark .Numbers {
|
2754
|
+
color: #CCCCCC;
|
2755
|
+
}
|
2756
|
+
pre.slush_poppies .Directives {
|
2757
|
+
font-weight: bold;
|
2758
|
+
}
|
2759
|
+
pre.slush_poppies .TypeName {
|
2760
|
+
color: #800080;
|
2761
|
+
}
|
2762
|
+
pre.slush_poppies .InheritedClass {
|
2763
|
+
}
|
2764
|
+
pre.slush_poppies .OcamlInfixFPOperators {
|
2765
|
+
text-decoration: underline;
|
2766
|
+
}
|
2767
|
+
pre.slush_poppies .Number {
|
2768
|
+
color: #0080A0;
|
2769
|
+
}
|
2770
|
+
pre.slush_poppies .LibraryVariable {
|
2771
|
+
}
|
2772
|
+
pre.slush_poppies .Storage {
|
2773
|
+
color: #008080;
|
2774
|
+
}
|
2775
|
+
pre.slush_poppies .line-numbers {
|
2776
|
+
background-color: #B0B0FF;
|
2777
|
+
color: #000000;
|
2778
|
+
}
|
2779
|
+
pre.slush_poppies .OcamlPrefixFPOperators {
|
2780
|
+
text-decoration: underline;
|
2781
|
+
}
|
2782
|
+
pre.slush_poppies .OcamlFloatingPointConstants {
|
2783
|
+
text-decoration: underline;
|
2784
|
+
}
|
2785
|
+
pre.slush_poppies .LineNumberDirectives {
|
2786
|
+
}
|
2787
|
+
pre.slush_poppies .TagName {
|
2788
|
+
}
|
2789
|
+
pre.slush_poppies .StorageTypes {
|
2790
|
+
color: #A08000;
|
2791
|
+
}
|
2792
|
+
pre.slush_poppies .Operators {
|
2793
|
+
color: #2060A0;
|
2794
|
+
}
|
2795
|
+
pre.slush_poppies .LibraryConstant {
|
2796
|
+
}
|
2797
|
+
pre.slush_poppies .VariantTypes {
|
2798
|
+
color: #C08060;
|
2799
|
+
}
|
2800
|
+
pre.slush_poppies .FunctionArgument {
|
2801
|
+
}
|
2802
|
+
pre.slush_poppies .BuiltInConstant {
|
2803
|
+
}
|
2804
|
+
pre.slush_poppies .ClassTypeName {
|
2805
|
+
color: #8000C0;
|
2806
|
+
}
|
2807
|
+
pre.slush_poppies .ModuleKeyword {
|
2808
|
+
color: #0080FF;
|
2809
|
+
}
|
2810
|
+
pre.slush_poppies .Invalid {
|
2811
|
+
}
|
2812
|
+
pre.slush_poppies .LibraryClassType {
|
2813
|
+
}
|
2814
|
+
pre.slush_poppies .LibraryFunction {
|
2815
|
+
}
|
2816
|
+
pre.slush_poppies .TagAttribute {
|
2817
|
+
}
|
2818
|
+
pre.slush_poppies .Keyword {
|
2819
|
+
color: #2060A0;
|
2820
|
+
}
|
2821
|
+
pre.slush_poppies .UserDefinedConstant {
|
2822
|
+
}
|
2823
|
+
pre.slush_poppies .CharacterConstants {
|
2824
|
+
color: #800000;
|
2825
|
+
}
|
2826
|
+
pre.slush_poppies .String {
|
2827
|
+
color: #C03030;
|
2828
|
+
}
|
2829
|
+
pre.slush_poppies {
|
2830
|
+
background-color: #F1F1F1;
|
2831
|
+
color: #000000;
|
2832
|
+
}
|
2833
|
+
pre.slush_poppies .FunctionName {
|
2834
|
+
color: #800000;
|
2835
|
+
}
|
2836
|
+
pre.slush_poppies .Variable {
|
2837
|
+
}
|
2838
|
+
pre.slush_poppies .Comment {
|
2839
|
+
color: #406040;
|
2840
|
+
}
|
2841
|
+
pre.spacecadet .Constant {
|
2842
|
+
color: #BF9960;
|
2843
|
+
}
|
2844
|
+
pre.spacecadet .Support {
|
2845
|
+
color: #8A4B66;
|
2846
|
+
}
|
2847
|
+
pre.spacecadet .InheritedClass {
|
2848
|
+
font-style: italic;
|
2849
|
+
}
|
2850
|
+
pre.spacecadet .LibraryVariable {
|
2851
|
+
}
|
2852
|
+
pre.spacecadet .Storage {
|
2853
|
+
color: #9EBF60;
|
2854
|
+
}
|
2855
|
+
pre.spacecadet .line-numbers {
|
2856
|
+
background-color: #40002F;
|
2857
|
+
color: #FFFFFF;
|
2858
|
+
}
|
2859
|
+
pre.spacecadet {
|
2860
|
+
background-color: #0D0D0D;
|
2861
|
+
color: #DDE6CF;
|
2862
|
+
}
|
2863
|
+
pre.spacecadet .TagName {
|
2864
|
+
}
|
2865
|
+
pre.spacecadet .Exception {
|
2866
|
+
color: #893062;
|
2867
|
+
}
|
2868
|
+
pre.spacecadet .LibraryConstant {
|
2869
|
+
}
|
2870
|
+
pre.spacecadet .Invalid {
|
2871
|
+
background-color: #5F0047;
|
2872
|
+
}
|
2873
|
+
pre.spacecadet .LibraryClassType {
|
2874
|
+
}
|
2875
|
+
pre.spacecadet .TagAttribute {
|
2876
|
+
}
|
2877
|
+
pre.spacecadet .Keyword {
|
2878
|
+
color: #728059;
|
2879
|
+
}
|
2880
|
+
pre.spacecadet .String {
|
2881
|
+
color: #805978;
|
2882
|
+
}
|
2883
|
+
pre.spacecadet .Entity {
|
2884
|
+
color: #6078BF;
|
2885
|
+
}
|
2886
|
+
pre.spacecadet .Variable {
|
2887
|
+
color: #596380;
|
2888
|
+
}
|
2889
|
+
pre.spacecadet .Comment {
|
2890
|
+
color: #473C45;
|
2891
|
+
}
|
2892
|
+
pre.sunburst .DiffInserted {
|
2893
|
+
background-color: #253B22;
|
2894
|
+
color: #F8F8F8;
|
2895
|
+
}
|
2896
|
+
pre.sunburst .DiffHeader {
|
2897
|
+
background-color: #0E2231;
|
2898
|
+
color: #F8F8F8;
|
2899
|
+
font-style: italic;
|
2900
|
+
}
|
2901
|
+
pre.sunburst .CssPropertyValue {
|
2902
|
+
color: #F9EE98;
|
2903
|
+
}
|
2904
|
+
pre.sunburst .CCCPreprocessorDirective {
|
2905
|
+
color: #AFC4DB;
|
2906
|
+
}
|
2907
|
+
pre.sunburst .Constant {
|
2908
|
+
color: #3387CC;
|
2909
|
+
}
|
2910
|
+
pre.sunburst .DiffChanged {
|
2911
|
+
background-color: #4A410D;
|
2912
|
+
color: #F8F8F8;
|
2913
|
+
}
|
2914
|
+
pre.sunburst .Support {
|
2915
|
+
color: #9B859D;
|
2916
|
+
}
|
2917
|
+
pre.sunburst .MarkupList {
|
2918
|
+
color: #E1D4B9;
|
2919
|
+
}
|
2920
|
+
pre.sunburst .CssConstructorArgument {
|
2921
|
+
color: #8F9D6A;
|
2922
|
+
}
|
2923
|
+
pre.sunburst .Storage {
|
2924
|
+
color: #99CF50;
|
2925
|
+
}
|
2926
|
+
pre.sunburst .line-numbers {
|
2927
|
+
background-color: #DDF0FF;
|
2928
|
+
color: #000000;
|
2929
|
+
}
|
2930
|
+
pre.sunburst .CssClass {
|
2931
|
+
color: #9B703F;
|
2932
|
+
}
|
2933
|
+
pre.sunburst .StringConstant {
|
2934
|
+
color: #DDF2A4;
|
2935
|
+
}
|
2936
|
+
pre.sunburst .MarkupSeparator {
|
2937
|
+
background-color: #242424;
|
2938
|
+
color: #60A633;
|
2939
|
+
}
|
2940
|
+
pre.sunburst .MarkupUnderline {
|
2941
|
+
text-decoration: underline;
|
2942
|
+
color: #E18964;
|
2943
|
+
}
|
2944
|
+
pre.sunburst .CssAtRule {
|
2945
|
+
color: #8693A5;
|
2946
|
+
}
|
2947
|
+
pre.sunburst .MetaTagInline {
|
2948
|
+
color: #E0C589;
|
2949
|
+
}
|
2950
|
+
pre.sunburst .JEntityNameType {
|
2951
|
+
text-decoration: underline;
|
2952
|
+
}
|
2953
|
+
pre.sunburst .LogEntryError {
|
2954
|
+
background-color: #751012;
|
2955
|
+
}
|
2956
|
+
pre.sunburst .MarkupHeading {
|
2957
|
+
background-color: #632D04;
|
2958
|
+
color: #FEDCC5;
|
2959
|
+
}
|
2960
|
+
pre.sunburst .CssTagName {
|
2961
|
+
color: #CDA869;
|
2962
|
+
}
|
2963
|
+
pre.sunburst .SupportConstant {
|
2964
|
+
color: #CF6A4C;
|
2965
|
+
}
|
2966
|
+
pre.sunburst .MarkupQuote {
|
2967
|
+
background-color: #ECD091;
|
2968
|
+
color: #E1D4B9;
|
2969
|
+
font-style: italic;
|
2970
|
+
}
|
2971
|
+
pre.sunburst .DiffDeleted {
|
2972
|
+
background-color: #420E09;
|
2973
|
+
color: #F8F8F8;
|
2974
|
+
}
|
2975
|
+
pre.sunburst .CCCPreprocessorLine {
|
2976
|
+
color: #8996A8;
|
2977
|
+
}
|
2978
|
+
pre.sunburst .StringRegexpSpecial {
|
2979
|
+
color: #CF7D34;
|
2980
|
+
}
|
2981
|
+
pre.sunburst .EmbeddedSourceBright {
|
2982
|
+
background-color: #ABADB4;
|
2983
|
+
}
|
2984
|
+
pre.sunburst .InvalidIllegal {
|
2985
|
+
background-color: #150B15;
|
2986
|
+
color: #FD5FF1;
|
2987
|
+
}
|
2988
|
+
pre.sunburst .MarkupRaw {
|
2989
|
+
background-color: #ABADB4;
|
2990
|
+
color: #578BB3;
|
2991
|
+
}
|
2992
|
+
pre.sunburst .SupportFunction {
|
2993
|
+
color: #DAD085;
|
2994
|
+
}
|
2995
|
+
pre.sunburst .CssAdditionalConstants {
|
2996
|
+
color: #DD7B3B;
|
2997
|
+
}
|
2998
|
+
pre.sunburst .MetaTagAll {
|
2999
|
+
color: #89BDFF;
|
3000
|
+
}
|
3001
|
+
pre.sunburst .StringRegexp {
|
3002
|
+
color: #E9C062;
|
3003
|
+
}
|
3004
|
+
pre.sunburst .StringEmbeddedSource {
|
3005
|
+
color: #DAEFA3;
|
3006
|
+
}
|
3007
|
+
pre.sunburst .EntityInheritedClass {
|
3008
|
+
color: #9B5C2E;
|
3009
|
+
font-style: italic;
|
3010
|
+
}
|
3011
|
+
pre.sunburst .MarkupComment {
|
3012
|
+
color: #F67B37;
|
3013
|
+
font-style: italic;
|
3014
|
+
}
|
3015
|
+
pre.sunburst .MarkupBold {
|
3016
|
+
font-weight: bold;
|
3017
|
+
color: #E9C062;
|
3018
|
+
}
|
3019
|
+
pre.sunburst .CssId {
|
3020
|
+
color: #8B98AB;
|
3021
|
+
}
|
3022
|
+
pre.sunburst .CssPseudoClass {
|
3023
|
+
color: #8F9D6A;
|
3024
|
+
}
|
3025
|
+
pre.sunburst .JCast {
|
3026
|
+
color: #676767;
|
3027
|
+
font-style: italic;
|
3028
|
+
}
|
3029
|
+
pre.sunburst .StringVariable {
|
3030
|
+
color: #8A9A95;
|
3031
|
+
}
|
3032
|
+
pre.sunburst .String {
|
3033
|
+
color: #65B042;
|
3034
|
+
}
|
3035
|
+
pre.sunburst .Keyword {
|
3036
|
+
color: #E28964;
|
3037
|
+
}
|
3038
|
+
pre.sunburst {
|
3039
|
+
background-color: #000000;
|
3040
|
+
color: #F8F8F8;
|
3041
|
+
}
|
3042
|
+
pre.sunburst .LogEntry {
|
3043
|
+
background-color: #C7C7C7;
|
3044
|
+
}
|
3045
|
+
pre.sunburst .MarkupItalic {
|
3046
|
+
color: #E9C062;
|
3047
|
+
font-style: italic;
|
3048
|
+
}
|
3049
|
+
pre.sunburst .CssPropertyName {
|
3050
|
+
color: #C5AF75;
|
3051
|
+
}
|
3052
|
+
pre.sunburst .Namespaces {
|
3053
|
+
color: #E18964;
|
3054
|
+
}
|
3055
|
+
pre.sunburst .DoctypeXmlProcessing {
|
3056
|
+
color: #494949;
|
3057
|
+
}
|
3058
|
+
pre.sunburst .InvalidDeprecated {
|
3059
|
+
color: #FD5FF1;
|
3060
|
+
font-style: italic;
|
3061
|
+
}
|
3062
|
+
pre.sunburst .Variable {
|
3063
|
+
color: #3E87E3;
|
3064
|
+
}
|
3065
|
+
pre.sunburst .Entity {
|
3066
|
+
color: #89BDFF;
|
3067
|
+
}
|
3068
|
+
pre.sunburst .Comment {
|
3069
|
+
color: #AEAEAE;
|
3070
|
+
font-style: italic;
|
3071
|
+
}
|
3072
|
+
pre.twilight .DiffInserted {
|
3073
|
+
background-color: #253B22;
|
3074
|
+
color: #F8F8F8;
|
3075
|
+
}
|
3076
|
+
pre.twilight .DiffHeader {
|
3077
|
+
background-color: #0E2231;
|
3078
|
+
color: #F8F8F8;
|
3079
|
+
font-style: italic;
|
3080
|
+
}
|
3081
|
+
pre.twilight .CssPropertyValue {
|
3082
|
+
color: #F9EE98;
|
3083
|
+
}
|
3084
|
+
pre.twilight .CCCPreprocessorDirective {
|
3085
|
+
color: #AFC4DB;
|
3086
|
+
}
|
3087
|
+
pre.twilight .Constant {
|
3088
|
+
color: #CF6A4C;
|
3089
|
+
}
|
3090
|
+
pre.twilight .DiffChanged {
|
3091
|
+
background-color: #4A410D;
|
3092
|
+
color: #F8F8F8;
|
3093
|
+
}
|
3094
|
+
pre.twilight .EmbeddedSource {
|
3095
|
+
background-color: #A3A6AD;
|
3096
|
+
}
|
3097
|
+
pre.twilight .Support {
|
3098
|
+
color: #9B859D;
|
3099
|
+
}
|
3100
|
+
pre.twilight .MarkupList {
|
3101
|
+
color: #F9EE98;
|
3102
|
+
}
|
3103
|
+
pre.twilight .CssConstructorArgument {
|
3104
|
+
color: #8F9D6A;
|
3105
|
+
}
|
3106
|
+
pre.twilight .Storage {
|
3107
|
+
color: #F9EE98;
|
3108
|
+
}
|
3109
|
+
pre.twilight .line-numbers {
|
3110
|
+
background-color: #DDF0FF;
|
3111
|
+
color: #000000;
|
3112
|
+
}
|
3113
|
+
pre.twilight .CssClass {
|
3114
|
+
color: #9B703F;
|
3115
|
+
}
|
3116
|
+
pre.twilight .StringConstant {
|
3117
|
+
color: #DDF2A4;
|
3118
|
+
}
|
3119
|
+
pre.twilight .CssAtRule {
|
3120
|
+
color: #8693A5;
|
3121
|
+
}
|
3122
|
+
pre.twilight .MetaTagInline {
|
3123
|
+
color: #E0C589;
|
3124
|
+
}
|
3125
|
+
pre.twilight .MarkupHeading {
|
3126
|
+
color: #CF6A4C;
|
3127
|
+
}
|
3128
|
+
pre.twilight .CssTagName {
|
3129
|
+
color: #CDA869;
|
3130
|
+
}
|
3131
|
+
pre.twilight .SupportConstant {
|
3132
|
+
color: #CF6A4C;
|
3133
|
+
}
|
3134
|
+
pre.twilight .DiffDeleted {
|
3135
|
+
background-color: #420E09;
|
3136
|
+
color: #F8F8F8;
|
3137
|
+
}
|
3138
|
+
pre.twilight .CCCPreprocessorLine {
|
3139
|
+
color: #8996A8;
|
3140
|
+
}
|
3141
|
+
pre.twilight .StringRegexpSpecial {
|
3142
|
+
color: #CF7D34;
|
3143
|
+
}
|
3144
|
+
pre.twilight .EmbeddedSourceBright {
|
3145
|
+
background-color: #9C9EA4;
|
3146
|
+
}
|
3147
|
+
pre.twilight .InvalidIllegal {
|
3148
|
+
background-color: #241A24;
|
3149
|
+
color: #F8F8F8;
|
3150
|
+
}
|
3151
|
+
pre.twilight .SupportFunction {
|
3152
|
+
color: #DAD085;
|
3153
|
+
}
|
3154
|
+
pre.twilight .CssAdditionalConstants {
|
3155
|
+
color: #CA7840;
|
3156
|
+
}
|
3157
|
+
pre.twilight .MetaTagAll {
|
3158
|
+
color: #AC885B;
|
3159
|
+
}
|
3160
|
+
pre.twilight .StringRegexp {
|
3161
|
+
color: #E9C062;
|
3162
|
+
}
|
3163
|
+
pre.twilight .StringEmbeddedSource {
|
3164
|
+
color: #DAEFA3;
|
3165
|
+
}
|
3166
|
+
pre.twilight .EntityInheritedClass {
|
3167
|
+
color: #9B5C2E;
|
3168
|
+
font-style: italic;
|
3169
|
+
}
|
3170
|
+
pre.twilight .CssId {
|
3171
|
+
color: #8B98AB;
|
3172
|
+
}
|
3173
|
+
pre.twilight .CssPseudoClass {
|
3174
|
+
color: #8F9D6A;
|
3175
|
+
}
|
3176
|
+
pre.twilight .StringVariable {
|
3177
|
+
color: #8A9A95;
|
3178
|
+
}
|
3179
|
+
pre.twilight .String {
|
3180
|
+
color: #8F9D6A;
|
3181
|
+
}
|
3182
|
+
pre.twilight .Keyword {
|
3183
|
+
color: #CDA869;
|
3184
|
+
}
|
3185
|
+
pre.twilight {
|
3186
|
+
background-color: #141414;
|
3187
|
+
color: #F8F8F8;
|
3188
|
+
}
|
3189
|
+
pre.twilight .CssPropertyName {
|
3190
|
+
color: #C5AF75;
|
3191
|
+
}
|
3192
|
+
pre.twilight .DoctypeXmlProcessing {
|
3193
|
+
color: #494949;
|
3194
|
+
}
|
3195
|
+
pre.twilight .InvalidDeprecated {
|
3196
|
+
color: #D2A8A1;
|
3197
|
+
font-style: italic;
|
3198
|
+
}
|
3199
|
+
pre.twilight .Variable {
|
3200
|
+
color: #7587A6;
|
3201
|
+
}
|
3202
|
+
pre.twilight .Entity {
|
3203
|
+
color: #9B703F;
|
3204
|
+
}
|
3205
|
+
pre.twilight .Comment {
|
3206
|
+
color: #5F5A60;
|
3207
|
+
font-style: italic;
|
3208
|
+
}
|
3209
|
+
pre.zenburnesque .InheritedClass {
|
3210
|
+
}
|
3211
|
+
pre.zenburnesque .TypeName {
|
3212
|
+
color: #F09040;
|
3213
|
+
}
|
3214
|
+
pre.zenburnesque .FloatingPointPrefixOperators {
|
3215
|
+
text-decoration: underline;
|
3216
|
+
}
|
3217
|
+
pre.zenburnesque .Number {
|
3218
|
+
color: #22C0FF;
|
3219
|
+
}
|
3220
|
+
pre.zenburnesque .Directive {
|
3221
|
+
font-weight: bold;
|
3222
|
+
}
|
3223
|
+
pre.zenburnesque .LibraryVariable {
|
3224
|
+
}
|
3225
|
+
pre.zenburnesque .Storage {
|
3226
|
+
}
|
3227
|
+
pre.zenburnesque .line-numbers {
|
3228
|
+
background-color: #A0A0C0;
|
3229
|
+
color: #000000;
|
3230
|
+
}
|
3231
|
+
pre.zenburnesque .LineNumberDirectives {
|
3232
|
+
text-decoration: underline;
|
3233
|
+
}
|
3234
|
+
pre.zenburnesque .TagName {
|
3235
|
+
}
|
3236
|
+
pre.zenburnesque .StorageTypes {
|
3237
|
+
color: #6080FF;
|
3238
|
+
}
|
3239
|
+
pre.zenburnesque .Operators {
|
3240
|
+
color: #FFFFA0;
|
3241
|
+
}
|
3242
|
+
pre.zenburnesque {
|
3243
|
+
background-color: #404040;
|
3244
|
+
color: #DEDEDE;
|
3245
|
+
}
|
3246
|
+
pre.zenburnesque .LibraryConstant {
|
3247
|
+
}
|
3248
|
+
pre.zenburnesque .VariantTypes {
|
3249
|
+
color: #4080A0;
|
3250
|
+
}
|
3251
|
+
pre.zenburnesque .Characters {
|
3252
|
+
color: #FF8080;
|
3253
|
+
}
|
3254
|
+
pre.zenburnesque .FunctionArgument {
|
3255
|
+
}
|
3256
|
+
pre.zenburnesque .LanguageKeyword {
|
3257
|
+
color: #FFFFA0;
|
3258
|
+
}
|
3259
|
+
pre.zenburnesque .BuiltInConstant {
|
3260
|
+
}
|
3261
|
+
pre.zenburnesque .FloatingPointNumbers {
|
3262
|
+
text-decoration: underline;
|
3263
|
+
}
|
3264
|
+
pre.zenburnesque .ClassTypeName {
|
3265
|
+
color: #F4A020;
|
3266
|
+
}
|
3267
|
+
pre.zenburnesque .TypeName1 {
|
3268
|
+
color: #FFE000;
|
3269
|
+
}
|
3270
|
+
pre.zenburnesque .ModuleKeyword {
|
3271
|
+
font-weight: bold;
|
3272
|
+
color: #FF8000;
|
3273
|
+
}
|
3274
|
+
pre.zenburnesque .Invalid {
|
3275
|
+
}
|
3276
|
+
pre.zenburnesque .LibraryClassType {
|
3277
|
+
}
|
3278
|
+
pre.zenburnesque .LibraryFunction {
|
3279
|
+
}
|
3280
|
+
pre.zenburnesque .TagAttribute {
|
3281
|
+
}
|
3282
|
+
pre.zenburnesque .FloatingPointInfixOperators {
|
3283
|
+
text-decoration: underline;
|
3284
|
+
}
|
3285
|
+
pre.zenburnesque .UserDefinedConstant {
|
3286
|
+
}
|
3287
|
+
pre.zenburnesque .String {
|
3288
|
+
color: #FF2020;
|
3289
|
+
}
|
3290
|
+
pre.zenburnesque .FunctionName {
|
3291
|
+
font-weight: bold;
|
3292
|
+
color: #FFCC66;
|
3293
|
+
}
|
3294
|
+
pre.zenburnesque .Variable {
|
3295
|
+
}
|
3296
|
+
pre.zenburnesque .Comment {
|
3297
|
+
color: #709070;
|
3298
|
+
font-style: italic;
|
3299
|
+
}
|