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
@@ -0,0 +1,64 @@
|
|
1
|
+
.highlight .hll { background-color: #49483e }
|
2
|
+
.highlight .c { color: #75715e } /* Comment */
|
3
|
+
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
4
|
+
.highlight .k { color: #66d9ef } /* Keyword */
|
5
|
+
.highlight .l { color: #ae81ff } /* Literal */
|
6
|
+
.highlight .n { color: #f8f8f2 } /* Name */
|
7
|
+
.highlight .o { color: #f92672 } /* Operator */
|
8
|
+
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
9
|
+
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
10
|
+
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
11
|
+
.highlight .c1 { color: #75715e } /* Comment.Single */
|
12
|
+
.highlight .cs { color: #75715e } /* Comment.Special */
|
13
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
14
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
15
|
+
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
16
|
+
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
17
|
+
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
18
|
+
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
19
|
+
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
20
|
+
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
21
|
+
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
22
|
+
.highlight .m { color: #ae81ff } /* Literal.Number */
|
23
|
+
.highlight .s { color: #e6db74 } /* Literal.String */
|
24
|
+
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
25
|
+
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
26
|
+
.highlight .nc { color: #a6e22e } /* Name.Class */
|
27
|
+
.highlight .no { color: #66d9ef } /* Name.Constant */
|
28
|
+
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
29
|
+
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
30
|
+
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
31
|
+
.highlight .nf { color: #a6e22e } /* Name.Function */
|
32
|
+
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
33
|
+
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
34
|
+
.highlight .nx { color: #a6e22e } /* Name.Other */
|
35
|
+
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
36
|
+
.highlight .nt { color: #f92672 } /* Name.Tag */
|
37
|
+
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
38
|
+
.highlight .ow { color: #f92672 } /* Operator.Word */
|
39
|
+
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
40
|
+
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
41
|
+
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
42
|
+
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
43
|
+
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
44
|
+
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
45
|
+
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
46
|
+
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
47
|
+
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
48
|
+
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
49
|
+
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
50
|
+
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
51
|
+
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
52
|
+
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
53
|
+
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
54
|
+
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
55
|
+
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
56
|
+
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
57
|
+
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
58
|
+
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
59
|
+
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
60
|
+
|
61
|
+
.highlight .gh { } /* Generic Heading & Diff Header */
|
62
|
+
.highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
63
|
+
.highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
|
64
|
+
.highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
|
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #606060; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #F00000; background-color: #F0A0A0 } /* Error */
|
4
|
+
.highlight .k { color: #208090; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #303030 } /* Operator */
|
6
|
+
.highlight .cm { color: #606060; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #507090 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #606060; font-style: italic } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #c00000; font-weight: bold; font-style: italic } /* 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: #208090; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #208090; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #208090; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #0080f0; font-weight: bold } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #208090; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #6060f0; font-weight: bold } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #6000E0; font-weight: bold } /* Literal.Number */
|
27
|
+
.highlight .s { background-color: #e0e0ff } /* Literal.String */
|
28
|
+
.highlight .na { color: #000070 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #007020 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #e090e0; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #50e0d0; font-weight: bold } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #505050; font-weight: bold } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #800000 } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #F00000; font-weight: bold } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #50e0d0; 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: #003060 } /* 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: #6060f0; font-weight: bold } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #4000E0; font-weight: bold } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { background-color: #e0e0ff } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #8080F0 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #D04020 } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { background-color: #e0e0ff } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #606060; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { background-color: #e0e0e0 } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #f08080; background-color: #e0e0ff } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { background-color: #e0e0ff } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #f0c080 } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #c0c0f0 } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #f08040 } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #a0a0f0 } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #6060f0; font-weight: bold } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,69 @@
|
|
1
|
+
.highlight .hll { background-color: #404040 }
|
2
|
+
.highlight .c { color: #999999; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .g { color: #d0d0d0 } /* Generic */
|
5
|
+
.highlight .k { color: #6ab825; font-weight: bold } /* Keyword */
|
6
|
+
.highlight .l { color: #d0d0d0 } /* Literal */
|
7
|
+
.highlight .n { color: #d0d0d0 } /* Name */
|
8
|
+
.highlight .o { color: #d0d0d0 } /* Operator */
|
9
|
+
.highlight .x { color: #d0d0d0 } /* Other */
|
10
|
+
.highlight .p { color: #d0d0d0 } /* Punctuation */
|
11
|
+
.highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */
|
12
|
+
.highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
|
13
|
+
.highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */
|
14
|
+
.highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
|
15
|
+
.highlight .gd { color: #d22323 } /* Generic.Deleted */
|
16
|
+
.highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
|
17
|
+
.highlight .gr { color: #d22323 } /* Generic.Error */
|
18
|
+
.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
19
|
+
.highlight .gi { color: #589819 } /* Generic.Inserted */
|
20
|
+
.highlight .go { color: #cccccc } /* Generic.Output */
|
21
|
+
.highlight .gp { color: #aaaaaa } /* Generic.Prompt */
|
22
|
+
.highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
|
23
|
+
.highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
|
24
|
+
.highlight .gt { color: #d22323 } /* Generic.Traceback */
|
25
|
+
.highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
|
26
|
+
.highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
|
27
|
+
.highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
|
28
|
+
.highlight .kp { color: #6ab825 } /* Keyword.Pseudo */
|
29
|
+
.highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
|
30
|
+
.highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
|
31
|
+
.highlight .ld { color: #d0d0d0 } /* Literal.Date */
|
32
|
+
.highlight .m { color: #3677a9 } /* Literal.Number */
|
33
|
+
.highlight .s { color: #ed9d13 } /* Literal.String */
|
34
|
+
.highlight .na { color: #bbbbbb } /* Name.Attribute */
|
35
|
+
.highlight .nb { color: #24909d } /* Name.Builtin */
|
36
|
+
.highlight .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
|
37
|
+
.highlight .no { color: #40ffff } /* Name.Constant */
|
38
|
+
.highlight .nd { color: #ffa500 } /* Name.Decorator */
|
39
|
+
.highlight .ni { color: #d0d0d0 } /* Name.Entity */
|
40
|
+
.highlight .ne { color: #bbbbbb } /* Name.Exception */
|
41
|
+
.highlight .nf { color: #447fcf } /* Name.Function */
|
42
|
+
.highlight .nl { color: #d0d0d0 } /* Name.Label */
|
43
|
+
.highlight .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
|
44
|
+
.highlight .nx { color: #d0d0d0 } /* Name.Other */
|
45
|
+
.highlight .py { color: #d0d0d0 } /* Name.Property */
|
46
|
+
.highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
|
47
|
+
.highlight .nv { color: #40ffff } /* Name.Variable */
|
48
|
+
.highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
|
49
|
+
.highlight .w { color: #666666 } /* Text.Whitespace */
|
50
|
+
.highlight .mf { color: #3677a9 } /* Literal.Number.Float */
|
51
|
+
.highlight .mh { color: #3677a9 } /* Literal.Number.Hex */
|
52
|
+
.highlight .mi { color: #3677a9 } /* Literal.Number.Integer */
|
53
|
+
.highlight .mo { color: #3677a9 } /* Literal.Number.Oct */
|
54
|
+
.highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */
|
55
|
+
.highlight .sc { color: #ed9d13 } /* Literal.String.Char */
|
56
|
+
.highlight .sd { color: #ed9d13 } /* Literal.String.Doc */
|
57
|
+
.highlight .s2 { color: #ed9d13 } /* Literal.String.Double */
|
58
|
+
.highlight .se { color: #ed9d13 } /* Literal.String.Escape */
|
59
|
+
.highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */
|
60
|
+
.highlight .si { color: #ed9d13 } /* Literal.String.Interpol */
|
61
|
+
.highlight .sx { color: #ffa500 } /* Literal.String.Other */
|
62
|
+
.highlight .sr { color: #ed9d13 } /* Literal.String.Regex */
|
63
|
+
.highlight .s1 { color: #ed9d13 } /* Literal.String.Single */
|
64
|
+
.highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */
|
65
|
+
.highlight .bp { color: #24909d } /* Name.Builtin.Pseudo */
|
66
|
+
.highlight .vc { color: #40ffff } /* Name.Variable.Class */
|
67
|
+
.highlight .vg { color: #40ffff } /* Name.Variable.Global */
|
68
|
+
.highlight .vi { color: #40ffff } /* Name.Variable.Instance */
|
69
|
+
.highlight .il { color: #3677a9 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,60 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #888888 } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .cm { color: #888888 } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #888888 } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* 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: #303030 } /* 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: #606060 } /* Generic.Subheading */
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
19
|
+
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
|
20
|
+
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
|
21
|
+
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
|
22
|
+
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
|
23
|
+
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
|
24
|
+
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
|
25
|
+
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
|
26
|
+
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
|
27
|
+
.highlight .na { color: #336699 } /* Name.Attribute */
|
28
|
+
.highlight .nb { color: #003388 } /* Name.Builtin */
|
29
|
+
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
|
30
|
+
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
|
31
|
+
.highlight .nd { color: #555555 } /* Name.Decorator */
|
32
|
+
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
|
33
|
+
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
|
34
|
+
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
|
35
|
+
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
|
36
|
+
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
|
37
|
+
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
|
38
|
+
.highlight .nv { color: #336699 } /* Name.Variable */
|
39
|
+
.highlight .ow { color: #008800 } /* Operator.Word */
|
40
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
41
|
+
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
|
42
|
+
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
|
43
|
+
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
|
44
|
+
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
|
45
|
+
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
|
46
|
+
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
|
47
|
+
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
|
48
|
+
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
|
49
|
+
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
|
50
|
+
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
|
51
|
+
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
|
52
|
+
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
|
53
|
+
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
|
54
|
+
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
|
55
|
+
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
|
56
|
+
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
|
57
|
+
.highlight .vc { color: #336699 } /* Name.Variable.Class */
|
58
|
+
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
|
59
|
+
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
|
60
|
+
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,58 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #228B22 } /* Comment */
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
4
|
+
.highlight .k { color: #8B008B; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .cm { color: #228B22 } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #1e889b } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #228B22 } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #8B008B; font-weight: bold } /* 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: #8B008B; font-weight: bold } /* Keyword.Constant */
|
20
|
+
.highlight .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */
|
21
|
+
.highlight .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */
|
22
|
+
.highlight .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */
|
23
|
+
.highlight .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */
|
24
|
+
.highlight .kt { color: #a7a7a7; font-weight: bold } /* Keyword.Type */
|
25
|
+
.highlight .m { color: #B452CD } /* Literal.Number */
|
26
|
+
.highlight .s { color: #CD5555 } /* Literal.String */
|
27
|
+
.highlight .na { color: #658b00 } /* Name.Attribute */
|
28
|
+
.highlight .nb { color: #658b00 } /* Name.Builtin */
|
29
|
+
.highlight .nc { color: #008b45; font-weight: bold } /* Name.Class */
|
30
|
+
.highlight .no { color: #00688B } /* Name.Constant */
|
31
|
+
.highlight .nd { color: #707a7c } /* Name.Decorator */
|
32
|
+
.highlight .ne { color: #008b45; font-weight: bold } /* Name.Exception */
|
33
|
+
.highlight .nf { color: #008b45 } /* Name.Function */
|
34
|
+
.highlight .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */
|
35
|
+
.highlight .nt { color: #8B008B; font-weight: bold } /* Name.Tag */
|
36
|
+
.highlight .nv { color: #00688B } /* Name.Variable */
|
37
|
+
.highlight .ow { color: #8B008B } /* Operator.Word */
|
38
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
39
|
+
.highlight .mf { color: #B452CD } /* Literal.Number.Float */
|
40
|
+
.highlight .mh { color: #B452CD } /* Literal.Number.Hex */
|
41
|
+
.highlight .mi { color: #B452CD } /* Literal.Number.Integer */
|
42
|
+
.highlight .mo { color: #B452CD } /* Literal.Number.Oct */
|
43
|
+
.highlight .sb { color: #CD5555 } /* Literal.String.Backtick */
|
44
|
+
.highlight .sc { color: #CD5555 } /* Literal.String.Char */
|
45
|
+
.highlight .sd { color: #CD5555 } /* Literal.String.Doc */
|
46
|
+
.highlight .s2 { color: #CD5555 } /* Literal.String.Double */
|
47
|
+
.highlight .se { color: #CD5555 } /* Literal.String.Escape */
|
48
|
+
.highlight .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */
|
49
|
+
.highlight .si { color: #CD5555 } /* Literal.String.Interpol */
|
50
|
+
.highlight .sx { color: #cb6c20 } /* Literal.String.Other */
|
51
|
+
.highlight .sr { color: #1c7e71 } /* Literal.String.Regex */
|
52
|
+
.highlight .s1 { color: #CD5555 } /* Literal.String.Single */
|
53
|
+
.highlight .ss { color: #CD5555 } /* Literal.String.Symbol */
|
54
|
+
.highlight .bp { color: #658b00 } /* Name.Builtin.Pseudo */
|
55
|
+
.highlight .vc { color: #00688B } /* Name.Variable.Class */
|
56
|
+
.highlight .vg { color: #00688B } /* Name.Variable.Global */
|
57
|
+
.highlight .vi { color: #00688B } /* Name.Variable.Instance */
|
58
|
+
.highlight .il { color: #B452CD } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,69 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #8f5902; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
|
4
|
+
.highlight .g { color: #000000 } /* Generic */
|
5
|
+
.highlight .k { color: #204a87; font-weight: bold } /* Keyword */
|
6
|
+
.highlight .l { color: #000000 } /* Literal */
|
7
|
+
.highlight .n { color: #000000 } /* Name */
|
8
|
+
.highlight .o { color: #ce5c00; font-weight: bold } /* Operator */
|
9
|
+
.highlight .x { color: #000000 } /* Other */
|
10
|
+
.highlight .p { color: #000000; font-weight: bold } /* Punctuation */
|
11
|
+
.highlight .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
|
12
|
+
.highlight .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
|
13
|
+
.highlight .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
|
14
|
+
.highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */
|
15
|
+
.highlight .gd { color: #a40000 } /* Generic.Deleted */
|
16
|
+
.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
|
17
|
+
.highlight .gr { color: #ef2929 } /* Generic.Error */
|
18
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
19
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
20
|
+
.highlight .go { color: #000000; font-style: italic } /* Generic.Output */
|
21
|
+
.highlight .gp { color: #8f5902 } /* Generic.Prompt */
|
22
|
+
.highlight .gs { color: #000000; font-weight: bold } /* Generic.Strong */
|
23
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
24
|
+
.highlight .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
|
25
|
+
.highlight .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
|
26
|
+
.highlight .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
|
27
|
+
.highlight .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
|
28
|
+
.highlight .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
|
29
|
+
.highlight .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
|
30
|
+
.highlight .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
|
31
|
+
.highlight .ld { color: #000000 } /* Literal.Date */
|
32
|
+
.highlight .m { color: #0000cf; font-weight: bold } /* Literal.Number */
|
33
|
+
.highlight .s { color: #4e9a06 } /* Literal.String */
|
34
|
+
.highlight .na { color: #c4a000 } /* Name.Attribute */
|
35
|
+
.highlight .nb { color: #204a87 } /* Name.Builtin */
|
36
|
+
.highlight .nc { color: #000000 } /* Name.Class */
|
37
|
+
.highlight .no { color: #000000 } /* Name.Constant */
|
38
|
+
.highlight .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
|
39
|
+
.highlight .ni { color: #ce5c00 } /* Name.Entity */
|
40
|
+
.highlight .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
|
41
|
+
.highlight .nf { color: #000000 } /* Name.Function */
|
42
|
+
.highlight .nl { color: #f57900 } /* Name.Label */
|
43
|
+
.highlight .nn { color: #000000 } /* Name.Namespace */
|
44
|
+
.highlight .nx { color: #000000 } /* Name.Other */
|
45
|
+
.highlight .py { color: #000000 } /* Name.Property */
|
46
|
+
.highlight .nt { color: #204a87; font-weight: bold } /* Name.Tag */
|
47
|
+
.highlight .nv { color: #000000 } /* Name.Variable */
|
48
|
+
.highlight .ow { color: #204a87; font-weight: bold } /* Operator.Word */
|
49
|
+
.highlight .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
|
50
|
+
.highlight .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
|
51
|
+
.highlight .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
|
52
|
+
.highlight .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
|
53
|
+
.highlight .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
|
54
|
+
.highlight .sb { color: #4e9a06 } /* Literal.String.Backtick */
|
55
|
+
.highlight .sc { color: #4e9a06 } /* Literal.String.Char */
|
56
|
+
.highlight .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
|
57
|
+
.highlight .s2 { color: #4e9a06 } /* Literal.String.Double */
|
58
|
+
.highlight .se { color: #4e9a06 } /* Literal.String.Escape */
|
59
|
+
.highlight .sh { color: #4e9a06 } /* Literal.String.Heredoc */
|
60
|
+
.highlight .si { color: #4e9a06 } /* Literal.String.Interpol */
|
61
|
+
.highlight .sx { color: #4e9a06 } /* Literal.String.Other */
|
62
|
+
.highlight .sr { color: #4e9a06 } /* Literal.String.Regex */
|
63
|
+
.highlight .s1 { color: #4e9a06 } /* Literal.String.Single */
|
64
|
+
.highlight .ss { color: #4e9a06 } /* Literal.String.Symbol */
|
65
|
+
.highlight .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
|
66
|
+
.highlight .vc { color: #000000 } /* Name.Variable.Class */
|
67
|
+
.highlight .vg { color: #000000 } /* Name.Variable.Global */
|
68
|
+
.highlight .vi { color: #000000 } /* Name.Variable.Instance */
|
69
|
+
.highlight .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,59 @@
|
|
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 { font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { font-weight: bold } /* Operator */
|
6
|
+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #999999; font-weight: bold } /* 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 { 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 { font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { 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: #bb8844 } /* Literal.String */
|
28
|
+
.highlight .na { color: #008080 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #999999 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
31
|
+
.highlight .no { color: #008080 } /* Name.Constant */
|
32
|
+
.highlight .ni { color: #800080 } /* Name.Entity */
|
33
|
+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
34
|
+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
35
|
+
.highlight .nn { color: #555555 } /* Name.Namespace */
|
36
|
+
.highlight .nt { color: #000080 } /* Name.Tag */
|
37
|
+
.highlight .nv { color: #008080 } /* Name.Variable */
|
38
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
39
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
40
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
41
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
42
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
43
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
44
|
+
.highlight .sb { color: #bb8844 } /* Literal.String.Backtick */
|
45
|
+
.highlight .sc { color: #bb8844 } /* Literal.String.Char */
|
46
|
+
.highlight .sd { color: #bb8844 } /* Literal.String.Doc */
|
47
|
+
.highlight .s2 { color: #bb8844 } /* Literal.String.Double */
|
48
|
+
.highlight .se { color: #bb8844 } /* Literal.String.Escape */
|
49
|
+
.highlight .sh { color: #bb8844 } /* Literal.String.Heredoc */
|
50
|
+
.highlight .si { color: #bb8844 } /* Literal.String.Interpol */
|
51
|
+
.highlight .sx { color: #bb8844 } /* Literal.String.Other */
|
52
|
+
.highlight .sr { color: #808000 } /* Literal.String.Regex */
|
53
|
+
.highlight .s1 { color: #bb8844 } /* Literal.String.Single */
|
54
|
+
.highlight .ss { color: #bb8844 } /* Literal.String.Symbol */
|
55
|
+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
56
|
+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
57
|
+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
58
|
+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
59
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,69 @@
|
|
1
|
+
.highlight .hll { background-color: #222222 }
|
2
|
+
.highlight .c { color: #000080 } /* Comment */
|
3
|
+
.highlight .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */
|
4
|
+
.highlight .g { color: #cccccc } /* Generic */
|
5
|
+
.highlight .k { color: #cdcd00 } /* Keyword */
|
6
|
+
.highlight .l { color: #cccccc } /* Literal */
|
7
|
+
.highlight .n { color: #cccccc } /* Name */
|
8
|
+
.highlight .o { color: #3399cc } /* Operator */
|
9
|
+
.highlight .x { color: #cccccc } /* Other */
|
10
|
+
.highlight .p { color: #cccccc } /* Punctuation */
|
11
|
+
.highlight .cm { color: #000080 } /* Comment.Multiline */
|
12
|
+
.highlight .cp { color: #000080 } /* Comment.Preproc */
|
13
|
+
.highlight .c1 { color: #000080 } /* Comment.Single */
|
14
|
+
.highlight .cs { color: #cd0000; font-weight: bold } /* Comment.Special */
|
15
|
+
.highlight .gd { color: #cd0000 } /* Generic.Deleted */
|
16
|
+
.highlight .ge { color: #cccccc; font-style: italic } /* Generic.Emph */
|
17
|
+
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
18
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
19
|
+
.highlight .gi { color: #00cd00 } /* Generic.Inserted */
|
20
|
+
.highlight .go { color: #808080 } /* Generic.Output */
|
21
|
+
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
22
|
+
.highlight .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */
|
23
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
24
|
+
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
25
|
+
.highlight .kc { color: #cdcd00 } /* Keyword.Constant */
|
26
|
+
.highlight .kd { color: #00cd00 } /* Keyword.Declaration */
|
27
|
+
.highlight .kn { color: #cd00cd } /* Keyword.Namespace */
|
28
|
+
.highlight .kp { color: #cdcd00 } /* Keyword.Pseudo */
|
29
|
+
.highlight .kr { color: #cdcd00 } /* Keyword.Reserved */
|
30
|
+
.highlight .kt { color: #00cd00 } /* Keyword.Type */
|
31
|
+
.highlight .ld { color: #cccccc } /* Literal.Date */
|
32
|
+
.highlight .m { color: #cd00cd } /* Literal.Number */
|
33
|
+
.highlight .s { color: #cd0000 } /* Literal.String */
|
34
|
+
.highlight .na { color: #cccccc } /* Name.Attribute */
|
35
|
+
.highlight .nb { color: #cd00cd } /* Name.Builtin */
|
36
|
+
.highlight .nc { color: #00cdcd } /* Name.Class */
|
37
|
+
.highlight .no { color: #cccccc } /* Name.Constant */
|
38
|
+
.highlight .nd { color: #cccccc } /* Name.Decorator */
|
39
|
+
.highlight .ni { color: #cccccc } /* Name.Entity */
|
40
|
+
.highlight .ne { color: #666699; font-weight: bold } /* Name.Exception */
|
41
|
+
.highlight .nf { color: #cccccc } /* Name.Function */
|
42
|
+
.highlight .nl { color: #cccccc } /* Name.Label */
|
43
|
+
.highlight .nn { color: #cccccc } /* Name.Namespace */
|
44
|
+
.highlight .nx { color: #cccccc } /* Name.Other */
|
45
|
+
.highlight .py { color: #cccccc } /* Name.Property */
|
46
|
+
.highlight .nt { color: #cccccc } /* Name.Tag */
|
47
|
+
.highlight .nv { color: #00cdcd } /* Name.Variable */
|
48
|
+
.highlight .ow { color: #cdcd00 } /* Operator.Word */
|
49
|
+
.highlight .w { color: #cccccc } /* Text.Whitespace */
|
50
|
+
.highlight .mf { color: #cd00cd } /* Literal.Number.Float */
|
51
|
+
.highlight .mh { color: #cd00cd } /* Literal.Number.Hex */
|
52
|
+
.highlight .mi { color: #cd00cd } /* Literal.Number.Integer */
|
53
|
+
.highlight .mo { color: #cd00cd } /* Literal.Number.Oct */
|
54
|
+
.highlight .sb { color: #cd0000 } /* Literal.String.Backtick */
|
55
|
+
.highlight .sc { color: #cd0000 } /* Literal.String.Char */
|
56
|
+
.highlight .sd { color: #cd0000 } /* Literal.String.Doc */
|
57
|
+
.highlight .s2 { color: #cd0000 } /* Literal.String.Double */
|
58
|
+
.highlight .se { color: #cd0000 } /* Literal.String.Escape */
|
59
|
+
.highlight .sh { color: #cd0000 } /* Literal.String.Heredoc */
|
60
|
+
.highlight .si { color: #cd0000 } /* Literal.String.Interpol */
|
61
|
+
.highlight .sx { color: #cd0000 } /* Literal.String.Other */
|
62
|
+
.highlight .sr { color: #cd0000 } /* Literal.String.Regex */
|
63
|
+
.highlight .s1 { color: #cd0000 } /* Literal.String.Single */
|
64
|
+
.highlight .ss { color: #cd0000 } /* Literal.String.Symbol */
|
65
|
+
.highlight .bp { color: #cd00cd } /* Name.Builtin.Pseudo */
|
66
|
+
.highlight .vc { color: #00cdcd } /* Name.Variable.Class */
|
67
|
+
.highlight .vg { color: #00cdcd } /* Name.Variable.Global */
|
68
|
+
.highlight .vi { color: #00cdcd } /* Name.Variable.Instance */
|
69
|
+
.highlight .il { color: #cd00cd } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,33 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #008000 } /* Comment */
|
3
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
4
|
+
.highlight .k { color: #0000ff } /* Keyword */
|
5
|
+
.highlight .cm { color: #008000 } /* Comment.Multiline */
|
6
|
+
.highlight .cp { color: #0000ff } /* Comment.Preproc */
|
7
|
+
.highlight .c1 { color: #008000 } /* Comment.Single */
|
8
|
+
.highlight .cs { color: #008000 } /* Comment.Special */
|
9
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
10
|
+
.highlight .gh { font-weight: bold } /* Generic.Heading */
|
11
|
+
.highlight .gp { font-weight: bold } /* Generic.Prompt */
|
12
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
13
|
+
.highlight .gu { font-weight: bold } /* Generic.Subheading */
|
14
|
+
.highlight .kc { color: #0000ff } /* Keyword.Constant */
|
15
|
+
.highlight .kd { color: #0000ff } /* Keyword.Declaration */
|
16
|
+
.highlight .kn { color: #0000ff } /* Keyword.Namespace */
|
17
|
+
.highlight .kp { color: #0000ff } /* Keyword.Pseudo */
|
18
|
+
.highlight .kr { color: #0000ff } /* Keyword.Reserved */
|
19
|
+
.highlight .kt { color: #2b91af } /* Keyword.Type */
|
20
|
+
.highlight .s { color: #a31515 } /* Literal.String */
|
21
|
+
.highlight .nc { color: #2b91af } /* Name.Class */
|
22
|
+
.highlight .ow { color: #0000ff } /* Operator.Word */
|
23
|
+
.highlight .sb { color: #a31515 } /* Literal.String.Backtick */
|
24
|
+
.highlight .sc { color: #a31515 } /* Literal.String.Char */
|
25
|
+
.highlight .sd { color: #a31515 } /* Literal.String.Doc */
|
26
|
+
.highlight .s2 { color: #a31515 } /* Literal.String.Double */
|
27
|
+
.highlight .se { color: #a31515 } /* Literal.String.Escape */
|
28
|
+
.highlight .sh { color: #a31515 } /* Literal.String.Heredoc */
|
29
|
+
.highlight .si { color: #a31515 } /* Literal.String.Interpol */
|
30
|
+
.highlight .sx { color: #a31515 } /* Literal.String.Other */
|
31
|
+
.highlight .sr { color: #a31515 } /* Literal.String.Regex */
|
32
|
+
.highlight .s1 { color: #a31515 } /* Literal.String.Single */
|
33
|
+
.highlight .ss { color: #a31515 } /* Literal.String.Symbol */
|
@@ -0,0 +1 @@
|
|
1
|
+
.highlight code,.highlight pre{color:#fdce93;background-color:#3f3f3f}.highlight .hll{background-color:#222}.highlight .c{color:#7f9f7f}.highlight .err{color:#e37170;background-color:#3d3535}.highlight .g{color:#7f9f7f}.highlight .k{color:#f0dfaf}.highlight .l{color:#ccc}.highlight .n{color:#dcdccc}.highlight .o{color:#f0efd0}.highlight .x{color:#ccc}.highlight .p{color:#41706f}.highlight .cm{color:#7f9f7f}.highlight .cp{color:#7f9f7f}.highlight .c1{color:#7f9f7f}.highlight .cs{color:#cd0000;font-weight:bold}.highlight .gd{color:#cd0000}.highlight .ge{color:#ccc;font-style:italic}.highlight .gr{color:red}.highlight .gh{color:#dcdccc;font-weight:bold}.highlight .gi{color:#00cd00}.highlight .go{color:gray}.highlight .gp{color:#dcdccc;font-weight:bold}.highlight .gs{color:#ccc;font-weight:bold}.highlight .gu{color:purple;font-weight:bold}.highlight .gt{color:#0040D0}.highlight .kc{color:#dca3a3}.highlight .kd{color:#ffff86}.highlight .kn{color:#dfaf8f;font-weight:bold}.highlight .kp{color:#cdcf99}.highlight .kr{color:#cdcd00}.highlight .kt{color:#00cd00}.highlight .ld{color:#cc9393}.highlight .m{color:#8cd0d3}.highlight .s{color:#cc9393}.highlight .na{color:#9ac39f}.highlight .nb{color:#efef8f}.highlight .nc{color:#efef8f}.highlight .no{color:#ccc}.highlight .nd{color:#ccc}.highlight .ni{color:#c28182}.highlight .ne{color:#c3bf9f;font-weight:bold}.highlight .nf{color:#efef8f}.highlight .nl{color:#ccc}.highlight .nn{color:#8fbede}.highlight .nx{color:#ccc}.highlight .py{color:#ccc}.highlight .nt{color:#9ac39f}.highlight .nv{color:#dcdccc}.highlight .ow{color:#f0efd0}.highlight .w{color:#ccc}.highlight .mf{color:#8cd0d3}.highlight .mh{color:#8cd0d3}.highlight .mi{color:#8cd0d3}.highlight .mo{color:#8cd0d3}.highlight .sb{color:#cc9393}.highlight .sc{color:#cc9393}.highlight .sd{color:#cc9393}.highlight .s2{color:#cc9393}.highlight .se{color:#cc9393}.highlight .sh{color:#cc9393}.highlight .si{color:#cc9393}.highlight .sx{color:#cc9393}.highlight .sr{color:#cc9393}.highlight .s1{color:#cc9393}.highlight .ss{color:#cc9393}.highlight .bp{color:#efef8f}.highlight .vc{color:#efef8f}.highlight .vg{color:#dcdccc}.highlight .vi{color:#ffffc7}.highlight .il{color:#8cd0d3}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
.passed {
|
2
|
+
background-color: green;
|
3
|
+
}
|
4
|
+
.partial {
|
5
|
+
background-color: #FF9900;
|
6
|
+
}
|
7
|
+
.failed {
|
8
|
+
background-color: red;
|
9
|
+
}
|
10
|
+
.pending {
|
11
|
+
background-color: LightGrey;
|
12
|
+
}
|
13
|
+
|
14
|
+
.bold { font-weight: bold; }
|
15
|
+
.underline { text-decoration: underline; }
|
16
|
+
.black { color: black; }
|
17
|
+
.red { color: red; }
|
18
|
+
.green { color: green; }
|
19
|
+
.yellow { color: yellow; }
|
20
|
+
.blue { color: blue; }
|
21
|
+
.magenta { color: magenta; }
|
22
|
+
.cyan { color: cyan; }
|
23
|
+
.white { color: white; }
|
24
|
+
.bg-black { background-color: black; }
|
25
|
+
.bg-red { background-color: red; }
|
26
|
+
.bg-green { background-color: green; }
|
27
|
+
.bg-yellow { background-color: yellow; }
|
28
|
+
.bg-blue { background-color: blue; }
|
29
|
+
.bg-magenta { background-color: magenta; }
|
30
|
+
.bg-cyan { background-color: cyan; }
|
31
|
+
.bg-white { background-color: white; }
|
32
|
+
.text-reset {
|
33
|
+
color: white;
|
34
|
+
background-color: black;
|
35
|
+
text-decoration: none;
|
36
|
+
font-weight: normal;
|
37
|
+
}
|
38
|
+
.console {
|
39
|
+
background: black;
|
40
|
+
color: white;
|
41
|
+
}
|