polytrix 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop-todo.yml +14 -5
- data/Gemfile +2 -1
- data/README.md +139 -177
- data/Rakefile +5 -12
- data/bin/polytrix +0 -1
- data/features/bootstrapping.feature +0 -3
- data/features/cloning.feature +0 -3
- data/features/show.feature +38 -0
- data/features/states.feature +12 -13
- data/features/step_definitions/sdk_steps.rb +0 -4
- data/lib/polytrix/challenge.rb +135 -53
- data/lib/polytrix/challenge_result.rb +0 -2
- data/lib/polytrix/challenge_runner.rb +28 -18
- data/lib/polytrix/cli.rb +53 -69
- data/lib/polytrix/color.rb +2 -2
- data/lib/polytrix/command/action.rb +4 -3
- data/lib/polytrix/command/list.rb +39 -28
- data/lib/polytrix/command/report.rb +9 -86
- data/lib/polytrix/command/reports/code2doc.rb +72 -0
- data/lib/polytrix/command/reports/dashboard.rb +125 -0
- data/lib/polytrix/command/show.rb +148 -0
- data/lib/polytrix/command.rb +37 -104
- data/lib/polytrix/configuration.rb +14 -18
- data/lib/polytrix/{core/hashie.rb → dash.rb} +4 -3
- data/lib/polytrix/documentation/code_segmenter.rb +8 -8
- data/lib/polytrix/documentation/comment_styles.rb +1 -1
- data/lib/polytrix/documentation/helpers/code_helper.rb +9 -0
- data/lib/polytrix/documentation_generator.rb +11 -14
- data/lib/polytrix/error.rb +104 -97
- data/lib/polytrix/executor.rb +33 -0
- data/lib/polytrix/{runners → executors}/buff_shellout_executor.rb +1 -1
- data/lib/polytrix/executors/linux_challenge_executor.rb +29 -0
- data/lib/polytrix/executors/mixlib_shellout_executor.rb +55 -0
- data/lib/polytrix/{runners/windows_challenge_runner.rb → executors/windows_challenge_executor.rb} +4 -11
- data/lib/polytrix/{core/implementor.rb → implementor.rb} +10 -6
- data/lib/polytrix/manifest.rb +2 -31
- data/lib/polytrix/{reports → reporters}/hash_reporter.rb +6 -2
- data/lib/polytrix/{reports → reporters}/json_reporter.rb +2 -2
- data/lib/polytrix/{reports → reporters}/markdown_reporter.rb +7 -2
- data/lib/polytrix/{reports → reporters}/yaml_reporter.rb +2 -2
- data/lib/polytrix/reporters.rb +27 -0
- data/lib/polytrix/result.rb +6 -5
- data/lib/polytrix/spies/file_system_spy.rb +15 -0
- data/lib/polytrix/spies.rb +61 -0
- data/lib/polytrix/state_file.rb +1 -20
- data/lib/polytrix/util.rb +157 -62
- data/lib/polytrix/validation.rb +41 -2
- data/lib/polytrix/validator.rb +9 -4
- data/lib/polytrix/version.rb +1 -1
- data/lib/polytrix.rb +110 -105
- data/polytrix.gemspec +7 -2
- data/polytrix.yml +16 -13
- data/resources/assets/pygments/autumn.css +58 -0
- data/resources/assets/pygments/borland.css +46 -0
- data/resources/assets/pygments/bw.css +34 -0
- data/resources/assets/pygments/colorful.css +61 -0
- data/resources/assets/pygments/default.css +62 -0
- data/resources/assets/pygments/emacs.css +61 -0
- data/resources/assets/pygments/friendly.css +61 -0
- data/resources/assets/pygments/fruity.css +69 -0
- data/resources/assets/pygments/github.css +61 -0
- data/resources/assets/pygments/manni.css +61 -0
- data/resources/assets/pygments/monokai.css +64 -0
- data/resources/assets/pygments/murphy.css +61 -0
- data/resources/assets/pygments/native.css +69 -0
- data/resources/assets/pygments/pastie.css +60 -0
- data/resources/assets/pygments/perldoc.css +58 -0
- data/resources/assets/pygments/tango.css +69 -0
- data/resources/assets/pygments/trac.css +59 -0
- data/resources/assets/pygments/vim.css +69 -0
- data/resources/assets/pygments/vs.css +33 -0
- data/resources/assets/pygments/zenburn.css +1 -0
- data/resources/assets/style.css +41 -0
- data/resources/templates/dashboard/files/dashboard.html.tt +82 -0
- data/resources/templates/dashboard/templates/_test_report.html.tt +87 -0
- data/samples/bootstrap.sh +2 -0
- data/samples/clone.sh +2 -0
- data/samples/code2doc.sh +4 -0
- data/samples/docs/samples/code2doc/java/katas-hello_world-java.md +17 -0
- data/samples/docs/samples/code2doc/java/katas-quine-java.md +35 -0
- data/samples/docs/samples/code2doc/python/katas-hello_world-python.md +5 -0
- data/samples/docs/samples/code2doc/python/katas-quine-python.md +6 -0
- data/samples/docs/samples/code2doc/ruby/katas-hello_world-ruby.md +11 -0
- data/samples/exec.sh +2 -0
- data/samples/polytrix.rb +2 -2
- data/samples/polytrix.yml +5 -2
- data/samples/show.sh +4 -0
- data/samples/test.sh +2 -0
- data/samples/tests/polytrix/validators.rb +2 -2
- data/samples/verify.sh +3 -0
- data/scripts/wrapper +4 -7
- data/spec/fabricators/challenge_fabricator.rb +2 -9
- data/spec/fabricators/implementor_fabricator.rb +0 -8
- data/spec/fabricators/manifest_fabricator.rb +2 -9
- data/spec/fabricators/validator_fabricator.rb +2 -4
- data/spec/polytrix/challenge_runner_spec.rb +20 -0
- data/spec/polytrix/documentation/helpers/code_helper_spec.rb +7 -7
- data/spec/polytrix/file_finder_spec.rb +5 -5
- data/spec/polytrix/manifest_spec.rb +0 -21
- data/spec/polytrix/result_spec.rb +14 -14
- data/spec/polytrix/validator_registry_spec.rb +4 -4
- data/spec/polytrix/validator_spec.rb +9 -9
- data/spec/polytrix_spec.rb +1 -25
- data/spec/spec_helper.rb +8 -1
- metadata +130 -38
- data/features/execution.feature +0 -53
- data/features/fixtures/spec/polytrix_spec.rb +0 -7
- data/lib/polytrix/cli/report.rb +0 -84
- data/lib/polytrix/command/rundoc.rb +0 -27
- data/lib/polytrix/core/file_system_helper.rb +0 -75
- data/lib/polytrix/core/manifest_section.rb +0 -4
- data/lib/polytrix/core/string_helpers.rb +0 -15
- data/lib/polytrix/documentation/view_helper.rb +0 -21
- data/lib/polytrix/rspec/documentation_formatter.rb +0 -66
- data/lib/polytrix/rspec/yaml_report.rb +0 -51
- data/lib/polytrix/rspec.rb +0 -56
- data/lib/polytrix/runners/executor.rb +0 -34
- data/lib/polytrix/runners/linux_challenge_runner.rb +0 -23
- data/lib/polytrix/runners/middleware/change_directory.rb +0 -20
- data/lib/polytrix/runners/middleware/feature_executor.rb +0 -24
- data/lib/polytrix/runners/middleware/setup_env_vars.rb +0 -42
- data/lib/polytrix/runners/mixlib_shellout_executor.rb +0 -83
- data/lib/polytrix/validations.rb +0 -23
- data/samples/scripts/wrapper +0 -7
- data/spec/polytrix/middleware/feature_executor_spec.rb +0 -48
- data/spec/polytrix/validations_spec.rb +0 -16
data/polytrix.yml
CHANGED
@@ -8,18 +8,21 @@ global_env: # global_env defines input available for al
|
|
8
8
|
LOCALE: <%= ENV['LANG'] %> # templating is allowed
|
9
9
|
FAVORITE_NUMBER: 5
|
10
10
|
suites:
|
11
|
-
|
11
|
+
CLI:
|
12
12
|
samples:
|
13
|
-
-
|
14
|
-
-
|
15
|
-
|
16
|
-
|
17
|
-
|
13
|
+
- clone
|
14
|
+
- detect
|
15
|
+
- bootstrap
|
16
|
+
- exec
|
17
|
+
- verify
|
18
|
+
- test
|
19
|
+
Spies:
|
20
|
+
samples:
|
21
|
+
- built in spies
|
22
|
+
- custom spies
|
23
|
+
Reports: # "Katas" is the name of the first suite
|
18
24
|
samples: # samples defines the individual tests in a suite
|
19
|
-
-
|
20
|
-
-
|
21
|
-
|
22
|
-
|
23
|
-
samples:
|
24
|
-
- validating
|
25
|
-
- reporting
|
25
|
+
- show
|
26
|
+
- dashboard
|
27
|
+
- custom spy report
|
28
|
+
|
@@ -0,0 +1,58 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #F00000; background-color: #F0A0A0 } /* Error */
|
4
|
+
.highlight .k { color: #0000aa } /* Keyword */
|
5
|
+
.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #4c8317 } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
|
9
|
+
.highlight .gd { color: #aa0000 } /* Generic.Deleted */
|
10
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
11
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
12
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
13
|
+
.highlight .gi { color: #00aa00 } /* Generic.Inserted */
|
14
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
15
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
16
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
17
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
19
|
+
.highlight .kc { color: #0000aa } /* Keyword.Constant */
|
20
|
+
.highlight .kd { color: #0000aa } /* Keyword.Declaration */
|
21
|
+
.highlight .kn { color: #0000aa } /* Keyword.Namespace */
|
22
|
+
.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
|
23
|
+
.highlight .kr { color: #0000aa } /* Keyword.Reserved */
|
24
|
+
.highlight .kt { color: #00aaaa } /* Keyword.Type */
|
25
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
26
|
+
.highlight .s { color: #aa5500 } /* Literal.String */
|
27
|
+
.highlight .na { color: #1e90ff } /* Name.Attribute */
|
28
|
+
.highlight .nb { color: #00aaaa } /* Name.Builtin */
|
29
|
+
.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
|
30
|
+
.highlight .no { color: #aa0000 } /* Name.Constant */
|
31
|
+
.highlight .nd { color: #888888 } /* Name.Decorator */
|
32
|
+
.highlight .ni { color: #800000; font-weight: bold } /* Name.Entity */
|
33
|
+
.highlight .nf { color: #00aa00 } /* Name.Function */
|
34
|
+
.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
|
35
|
+
.highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
|
36
|
+
.highlight .nv { color: #aa0000 } /* Name.Variable */
|
37
|
+
.highlight .ow { color: #0000aa } /* Operator.Word */
|
38
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
39
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
40
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
41
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
42
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
43
|
+
.highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
|
44
|
+
.highlight .sc { color: #aa5500 } /* Literal.String.Char */
|
45
|
+
.highlight .sd { color: #aa5500 } /* Literal.String.Doc */
|
46
|
+
.highlight .s2 { color: #aa5500 } /* Literal.String.Double */
|
47
|
+
.highlight .se { color: #aa5500 } /* Literal.String.Escape */
|
48
|
+
.highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
|
49
|
+
.highlight .si { color: #aa5500 } /* Literal.String.Interpol */
|
50
|
+
.highlight .sx { color: #aa5500 } /* Literal.String.Other */
|
51
|
+
.highlight .sr { color: #009999 } /* Literal.String.Regex */
|
52
|
+
.highlight .s1 { color: #aa5500 } /* Literal.String.Single */
|
53
|
+
.highlight .ss { color: #0000aa } /* Literal.String.Symbol */
|
54
|
+
.highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
|
55
|
+
.highlight .vc { color: #aa0000 } /* Name.Variable.Class */
|
56
|
+
.highlight .vg { color: #aa0000 } /* Name.Variable.Global */
|
57
|
+
.highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
|
58
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,46 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #008800; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .k { color: #000080; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #008080 } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #008800; font-weight: bold } /* Comment.Special */
|
9
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
10
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
11
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
12
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
13
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
14
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
15
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
16
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
17
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
19
|
+
.highlight .kc { color: #000080; font-weight: bold } /* Keyword.Constant */
|
20
|
+
.highlight .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */
|
21
|
+
.highlight .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */
|
22
|
+
.highlight .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */
|
23
|
+
.highlight .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */
|
24
|
+
.highlight .kt { color: #000080; font-weight: bold } /* Keyword.Type */
|
25
|
+
.highlight .m { color: #0000FF } /* Literal.Number */
|
26
|
+
.highlight .s { color: #0000FF } /* Literal.String */
|
27
|
+
.highlight .na { color: #FF0000 } /* Name.Attribute */
|
28
|
+
.highlight .nt { color: #000080; font-weight: bold } /* Name.Tag */
|
29
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
30
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
31
|
+
.highlight .mf { color: #0000FF } /* Literal.Number.Float */
|
32
|
+
.highlight .mh { color: #0000FF } /* Literal.Number.Hex */
|
33
|
+
.highlight .mi { color: #0000FF } /* Literal.Number.Integer */
|
34
|
+
.highlight .mo { color: #0000FF } /* Literal.Number.Oct */
|
35
|
+
.highlight .sb { color: #0000FF } /* Literal.String.Backtick */
|
36
|
+
.highlight .sc { color: #800080 } /* Literal.String.Char */
|
37
|
+
.highlight .sd { color: #0000FF } /* Literal.String.Doc */
|
38
|
+
.highlight .s2 { color: #0000FF } /* Literal.String.Double */
|
39
|
+
.highlight .se { color: #0000FF } /* Literal.String.Escape */
|
40
|
+
.highlight .sh { color: #0000FF } /* Literal.String.Heredoc */
|
41
|
+
.highlight .si { color: #0000FF } /* Literal.String.Interpol */
|
42
|
+
.highlight .sx { color: #0000FF } /* Literal.String.Other */
|
43
|
+
.highlight .sr { color: #0000FF } /* Literal.String.Regex */
|
44
|
+
.highlight .s1 { color: #0000FF } /* Literal.String.Single */
|
45
|
+
.highlight .ss { color: #0000FF } /* Literal.String.Symbol */
|
46
|
+
.highlight .il { color: #0000FF } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,34 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { font-style: italic } /* Comment */
|
3
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
4
|
+
.highlight .k { font-weight: bold } /* Keyword */
|
5
|
+
.highlight .cm { font-style: italic } /* Comment.Multiline */
|
6
|
+
.highlight .c1 { font-style: italic } /* Comment.Single */
|
7
|
+
.highlight .cs { font-style: italic } /* Comment.Special */
|
8
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
9
|
+
.highlight .gh { font-weight: bold } /* Generic.Heading */
|
10
|
+
.highlight .gp { font-weight: bold } /* Generic.Prompt */
|
11
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
12
|
+
.highlight .gu { font-weight: bold } /* Generic.Subheading */
|
13
|
+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
14
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
15
|
+
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
|
16
|
+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
17
|
+
.highlight .s { font-style: italic } /* Literal.String */
|
18
|
+
.highlight .nc { font-weight: bold } /* Name.Class */
|
19
|
+
.highlight .ni { font-weight: bold } /* Name.Entity */
|
20
|
+
.highlight .ne { font-weight: bold } /* Name.Exception */
|
21
|
+
.highlight .nn { font-weight: bold } /* Name.Namespace */
|
22
|
+
.highlight .nt { font-weight: bold } /* Name.Tag */
|
23
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
24
|
+
.highlight .sb { font-style: italic } /* Literal.String.Backtick */
|
25
|
+
.highlight .sc { font-style: italic } /* Literal.String.Char */
|
26
|
+
.highlight .sd { font-style: italic } /* Literal.String.Doc */
|
27
|
+
.highlight .s2 { font-style: italic } /* Literal.String.Double */
|
28
|
+
.highlight .se { font-weight: bold; font-style: italic } /* Literal.String.Escape */
|
29
|
+
.highlight .sh { font-style: italic } /* Literal.String.Heredoc */
|
30
|
+
.highlight .si { font-weight: bold; font-style: italic } /* Literal.String.Interpol */
|
31
|
+
.highlight .sx { font-style: italic } /* Literal.String.Other */
|
32
|
+
.highlight .sr { font-style: italic } /* Literal.String.Regex */
|
33
|
+
.highlight .s1 { font-style: italic } /* Literal.String.Single */
|
34
|
+
.highlight .ss { font-style: italic } /* Literal.String.Symbol */
|
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #808080 } /* Comment */
|
3
|
+
.highlight .err { color: #F00000; background-color: #F0A0A0 } /* Error */
|
4
|
+
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #303030 } /* Operator */
|
6
|
+
.highlight .cm { color: #808080 } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #507090 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #808080 } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #cc0000; font-weight: bold } /* Comment.Special */
|
10
|
+
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
14
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #808080 } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
17
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #003080; font-weight: bold } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #303090; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #6000E0; font-weight: bold } /* Literal.Number */
|
27
|
+
.highlight .s { background-color: #fff0f0 } /* Literal.String */
|
28
|
+
.highlight .na { color: #0000C0 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #007020 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #B00060; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #003060; font-weight: bold } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #505050; font-weight: bold } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #800000; font-weight: bold } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #F00000; font-weight: bold } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #0060B0; font-weight: bold } /* Name.Function */
|
36
|
+
.highlight .nl { color: #907000; font-weight: bold } /* Name.Label */
|
37
|
+
.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
38
|
+
.highlight .nt { color: #007000 } /* Name.Tag */
|
39
|
+
.highlight .nv { color: #906030 } /* Name.Variable */
|
40
|
+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
42
|
+
.highlight .mf { color: #6000E0; font-weight: bold } /* Literal.Number.Float */
|
43
|
+
.highlight .mh { color: #005080; font-weight: bold } /* Literal.Number.Hex */
|
44
|
+
.highlight .mi { color: #0000D0; font-weight: bold } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #4000E0; font-weight: bold } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { background-color: #fff0f0 } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #0040D0 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #D04020 } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { background-color: #fff0f0 } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #606060; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { background-color: #e0e0e0 } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #D02000; background-color: #fff0f0 } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { background-color: #fff0f0 } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #A06000 } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #306090 } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #d07000; font-weight: bold } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #3030B0 } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #0000D0; font-weight: bold } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,62 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight { background: #f8f8f8; }
|
3
|
+
.highlight .c { color: #408080; font-style: italic } /* Comment */
|
4
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
5
|
+
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
|
6
|
+
.highlight .o { color: #666666 } /* Operator */
|
7
|
+
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
|
8
|
+
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
|
9
|
+
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
|
10
|
+
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
|
11
|
+
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
12
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
13
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
14
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
15
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
16
|
+
.highlight .go { color: #808080 } /* Generic.Output */
|
17
|
+
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
18
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
19
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
20
|
+
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
21
|
+
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
22
|
+
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
23
|
+
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
24
|
+
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
|
25
|
+
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
26
|
+
.highlight .kt { color: #B00040 } /* Keyword.Type */
|
27
|
+
.highlight .m { color: #666666 } /* Literal.Number */
|
28
|
+
.highlight .s { color: #BA2121 } /* Literal.String */
|
29
|
+
.highlight .na { color: #7D9029 } /* Name.Attribute */
|
30
|
+
.highlight .nb { color: #008000 } /* Name.Builtin */
|
31
|
+
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
|
32
|
+
.highlight .no { color: #880000 } /* Name.Constant */
|
33
|
+
.highlight .nd { color: #AA22FF } /* Name.Decorator */
|
34
|
+
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
35
|
+
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
36
|
+
.highlight .nf { color: #0000FF } /* Name.Function */
|
37
|
+
.highlight .nl { color: #A0A000 } /* Name.Label */
|
38
|
+
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
39
|
+
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
40
|
+
.highlight .nv { color: #19177C } /* Name.Variable */
|
41
|
+
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
42
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
43
|
+
.highlight .mf { color: #666666 } /* Literal.Number.Float */
|
44
|
+
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
|
45
|
+
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
|
46
|
+
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
|
47
|
+
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
|
48
|
+
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
|
49
|
+
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
50
|
+
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
|
51
|
+
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
52
|
+
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
|
53
|
+
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
54
|
+
.highlight .sx { color: #008000 } /* Literal.String.Other */
|
55
|
+
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
|
56
|
+
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
|
57
|
+
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
|
58
|
+
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
|
59
|
+
.highlight .vc { color: #19177C } /* Name.Variable.Class */
|
60
|
+
.highlight .vg { color: #19177C } /* Name.Variable.Global */
|
61
|
+
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
|
62
|
+
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #008800; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
4
|
+
.highlight .k { color: #AA22FF; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #666666 } /* Operator */
|
6
|
+
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #008800 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #008800; font-weight: bold } /* Comment.Special */
|
10
|
+
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
14
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #808080 } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
17
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { color: #AA22FF; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #AA22FF; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #AA22FF; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #AA22FF } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #AA22FF; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #00BB00; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #666666 } /* Literal.Number */
|
27
|
+
.highlight .s { color: #BB4444 } /* Literal.String */
|
28
|
+
.highlight .na { color: #BB4444 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #AA22FF } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #0000FF } /* Name.Class */
|
31
|
+
.highlight .no { color: #880000 } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #AA22FF } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #00A000 } /* Name.Function */
|
36
|
+
.highlight .nl { color: #A0A000 } /* Name.Label */
|
37
|
+
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
38
|
+
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
39
|
+
.highlight .nv { color: #B8860B } /* Name.Variable */
|
40
|
+
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
42
|
+
.highlight .mf { color: #666666 } /* Literal.Number.Float */
|
43
|
+
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
|
44
|
+
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { color: #BB4444 } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #BB4444 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #BB4444; font-style: italic } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { color: #BB4444 } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { color: #BB4444 } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #008000 } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { color: #BB4444 } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #B8860B } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #AA22FF } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #B8860B } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #B8860B } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #B8860B } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #60a0b0; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
4
|
+
.highlight .k { color: #007020; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #666666 } /* Operator */
|
6
|
+
.highlight .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #007020 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
|
10
|
+
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
14
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #808080 } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
17
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #007020 } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #902000 } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #40a070 } /* Literal.Number */
|
27
|
+
.highlight .s { color: #4070a0 } /* Literal.String */
|
28
|
+
.highlight .na { color: #4070a0 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #007020 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #60add5 } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #007020 } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #06287e } /* Name.Function */
|
36
|
+
.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */
|
37
|
+
.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
38
|
+
.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */
|
39
|
+
.highlight .nv { color: #bb60d5 } /* Name.Variable */
|
40
|
+
.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
42
|
+
.highlight .mf { color: #40a070 } /* Literal.Number.Float */
|
43
|
+
.highlight .mh { color: #40a070 } /* Literal.Number.Hex */
|
44
|
+
.highlight .mi { color: #40a070 } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #40a070 } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #4070a0 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { color: #4070a0 } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #c65d09 } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #235388 } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { color: #4070a0 } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #517918 } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #40a070 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,69 @@
|
|
1
|
+
.highlight .hll { background-color: #333333 }
|
2
|
+
.highlight .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */
|
3
|
+
.highlight .err { color: #ffffff } /* Error */
|
4
|
+
.highlight .g { color: #ffffff } /* Generic */
|
5
|
+
.highlight .k { color: #fb660a; font-weight: bold } /* Keyword */
|
6
|
+
.highlight .l { color: #ffffff } /* Literal */
|
7
|
+
.highlight .n { color: #ffffff } /* Name */
|
8
|
+
.highlight .o { color: #ffffff } /* Operator */
|
9
|
+
.highlight .x { color: #ffffff } /* Other */
|
10
|
+
.highlight .p { color: #ffffff } /* Punctuation */
|
11
|
+
.highlight .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */
|
12
|
+
.highlight .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */
|
13
|
+
.highlight .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */
|
14
|
+
.highlight .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */
|
15
|
+
.highlight .gd { color: #ffffff } /* Generic.Deleted */
|
16
|
+
.highlight .ge { color: #ffffff } /* Generic.Emph */
|
17
|
+
.highlight .gr { color: #ffffff } /* Generic.Error */
|
18
|
+
.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
19
|
+
.highlight .gi { color: #ffffff } /* Generic.Inserted */
|
20
|
+
.highlight .go { color: #444444; background-color: #222222 } /* Generic.Output */
|
21
|
+
.highlight .gp { color: #ffffff } /* Generic.Prompt */
|
22
|
+
.highlight .gs { color: #ffffff } /* Generic.Strong */
|
23
|
+
.highlight .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
|
24
|
+
.highlight .gt { color: #ffffff } /* Generic.Traceback */
|
25
|
+
.highlight .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */
|
26
|
+
.highlight .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */
|
27
|
+
.highlight .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */
|
28
|
+
.highlight .kp { color: #fb660a } /* Keyword.Pseudo */
|
29
|
+
.highlight .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */
|
30
|
+
.highlight .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */
|
31
|
+
.highlight .ld { color: #ffffff } /* Literal.Date */
|
32
|
+
.highlight .m { color: #0086f7; font-weight: bold } /* Literal.Number */
|
33
|
+
.highlight .s { color: #0086d2 } /* Literal.String */
|
34
|
+
.highlight .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
|
35
|
+
.highlight .nb { color: #ffffff } /* Name.Builtin */
|
36
|
+
.highlight .nc { color: #ffffff } /* Name.Class */
|
37
|
+
.highlight .no { color: #0086d2 } /* Name.Constant */
|
38
|
+
.highlight .nd { color: #ffffff } /* Name.Decorator */
|
39
|
+
.highlight .ni { color: #ffffff } /* Name.Entity */
|
40
|
+
.highlight .ne { color: #ffffff } /* Name.Exception */
|
41
|
+
.highlight .nf { color: #ff0086; font-weight: bold } /* Name.Function */
|
42
|
+
.highlight .nl { color: #ffffff } /* Name.Label */
|
43
|
+
.highlight .nn { color: #ffffff } /* Name.Namespace */
|
44
|
+
.highlight .nx { color: #ffffff } /* Name.Other */
|
45
|
+
.highlight .py { color: #ffffff } /* Name.Property */
|
46
|
+
.highlight .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
|
47
|
+
.highlight .nv { color: #fb660a } /* Name.Variable */
|
48
|
+
.highlight .ow { color: #ffffff } /* Operator.Word */
|
49
|
+
.highlight .w { color: #888888 } /* Text.Whitespace */
|
50
|
+
.highlight .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */
|
51
|
+
.highlight .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */
|
52
|
+
.highlight .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */
|
53
|
+
.highlight .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */
|
54
|
+
.highlight .sb { color: #0086d2 } /* Literal.String.Backtick */
|
55
|
+
.highlight .sc { color: #0086d2 } /* Literal.String.Char */
|
56
|
+
.highlight .sd { color: #0086d2 } /* Literal.String.Doc */
|
57
|
+
.highlight .s2 { color: #0086d2 } /* Literal.String.Double */
|
58
|
+
.highlight .se { color: #0086d2 } /* Literal.String.Escape */
|
59
|
+
.highlight .sh { color: #0086d2 } /* Literal.String.Heredoc */
|
60
|
+
.highlight .si { color: #0086d2 } /* Literal.String.Interpol */
|
61
|
+
.highlight .sx { color: #0086d2 } /* Literal.String.Other */
|
62
|
+
.highlight .sr { color: #0086d2 } /* Literal.String.Regex */
|
63
|
+
.highlight .s1 { color: #0086d2 } /* Literal.String.Single */
|
64
|
+
.highlight .ss { color: #0086d2 } /* Literal.String.Symbol */
|
65
|
+
.highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */
|
66
|
+
.highlight .vc { color: #fb660a } /* Name.Variable.Class */
|
67
|
+
.highlight .vg { color: #fb660a } /* Name.Variable.Global */
|
68
|
+
.highlight .vi { color: #fb660a } /* Name.Variable.Instance */
|
69
|
+
.highlight .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .k { color: #000000; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #000000; font-weight: bold } /* Operator */
|
6
|
+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
10
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
11
|
+
.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
14
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
17
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
27
|
+
.highlight .s { color: #d01040 } /* Literal.String */
|
28
|
+
.highlight .na { color: #008080 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #008080 } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #800080 } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
36
|
+
.highlight .nl { color: #990000; font-weight: bold } /* Name.Label */
|
37
|
+
.highlight .nn { color: #555555 } /* Name.Namespace */
|
38
|
+
.highlight .nt { color: #000080 } /* Name.Tag */
|
39
|
+
.highlight .nv { color: #008080 } /* Name.Variable */
|
40
|
+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
42
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
43
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
44
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { color: #d01040 } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #d01040 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #d01040 } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { color: #d01040 } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #d01040 } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { color: #d01040 } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { color: #d01040 } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #d01040 } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { color: #d01040 } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #0099FF; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
|
4
|
+
.highlight .k { color: #006699; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #555555 } /* Operator */
|
6
|
+
.highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #009999 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
|
10
|
+
.highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
|
14
|
+
.highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #AAAAAA } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
|
17
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #99CC66 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #006699 } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #FF6600 } /* Literal.Number */
|
27
|
+
.highlight .s { color: #CC3300 } /* Literal.String */
|
28
|
+
.highlight .na { color: #330099 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #336666 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #336600 } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #9999FF } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #CC00FF } /* Name.Function */
|
36
|
+
.highlight .nl { color: #9999FF } /* Name.Label */
|
37
|
+
.highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
|
38
|
+
.highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
|
39
|
+
.highlight .nv { color: #003333 } /* Name.Variable */
|
40
|
+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
42
|
+
.highlight .mf { color: #FF6600 } /* Literal.Number.Float */
|
43
|
+
.highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
|
44
|
+
.highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #CC3300 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { color: #CC3300 } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { color: #AA0000 } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #CC3300 } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #33AAAA } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { color: #CC3300 } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #003333 } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #003333 } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #003333 } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
|