omnitest 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.gitmodules +0 -0
- data/.groc.json +7 -0
- data/.rspec +6 -0
- data/.rubocop.yml +5 -0
- data/.rubocop_todo.yml +47 -0
- data/.travis.yml +12 -0
- data/.yardopts +3 -0
- data/Gemfile +26 -0
- data/README.md +341 -0
- data/Rakefile +33 -0
- data/appveyor.yml +9 -0
- data/bin/omnidoc +5 -0
- data/bin/omnitask +5 -0
- data/bin/omnitest +5 -0
- data/bower.json +21 -0
- data/doc-src/index.md.tt +341 -0
- data/doc-src/project_sets.md.tt +31 -0
- data/doc-src/usage/crosstask.md.tt +86 -0
- data/doc-src/usage/omnitest.md.tt +87 -0
- data/features/bootstrapping.feature +25 -0
- data/features/cloning.feature +32 -0
- data/features/fixtures/configs/omnitest_sample.yaml +11 -0
- data/features/fixtures/configs/skeptic_empty.yaml +12 -0
- data/features/fixtures/configs/skeptic_hello_world.yaml +10 -0
- data/features/show.feature +38 -0
- data/features/states.feature +40 -0
- data/features/step_definitions/sdk_steps.rb +22 -0
- data/features/support/env.rb +9 -0
- data/lib/omnitest.rb +211 -0
- data/lib/omnitest/cli.rb +297 -0
- data/lib/omnitest/command.rb +103 -0
- data/lib/omnitest/command/generate.rb +29 -0
- data/lib/omnitest/command/generators/code2doc.rb +79 -0
- data/lib/omnitest/command/generators/dashboard.rb +148 -0
- data/lib/omnitest/command/generators/documentation.rb +119 -0
- data/lib/omnitest/command/list.rb +62 -0
- data/lib/omnitest/command/project_action.rb +26 -0
- data/lib/omnitest/command/scenario_action.rb +20 -0
- data/lib/omnitest/command/show.rb +148 -0
- data/lib/omnitest/command/task.rb +27 -0
- data/lib/omnitest/command/test.rb +41 -0
- data/lib/omnitest/configuration.rb +53 -0
- data/lib/omnitest/documentation_generator.rb +68 -0
- data/lib/omnitest/project.rb +100 -0
- data/lib/omnitest/project_logger.rb +273 -0
- data/lib/omnitest/project_set.rb +47 -0
- data/lib/omnitest/reporters.rb +27 -0
- data/lib/omnitest/reporters/hash_reporter.rb +32 -0
- data/lib/omnitest/reporters/json_reporter.rb +12 -0
- data/lib/omnitest/reporters/markdown_reporter.rb +26 -0
- data/lib/omnitest/reporters/yaml_reporter.rb +12 -0
- data/lib/omnitest/run_action.rb +44 -0
- data/lib/omnitest/version.rb +3 -0
- data/lib/omnitest/workflow.rb +5 -0
- data/mkdocs.yml +8 -0
- data/omnitest.gemspec +39 -0
- data/omnitest.yaml +5 -0
- data/resources/assets/angular/angular.min.js +217 -0
- data/resources/assets/angular/angular.min.js.map +8 -0
- data/resources/assets/angular/json-formatter.min.css +6 -0
- data/resources/assets/angular/json-formatter.min.js +7 -0
- data/resources/assets/angular/ng-table.map +1 -0
- data/resources/assets/angular/ng-table.min.css +3 -0
- data/resources/assets/angular/ng-table.min.js +3 -0
- data/resources/assets/angular/ui-bootstrap-tpls.min.js +10 -0
- data/resources/assets/bootstrap/bootstrap.min.css +9 -0
- data/resources/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/resources/assets/fonts/glyphicons-halflings-regular.svg +229 -0
- data/resources/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/resources/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- 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 +56 -0
- data/resources/code_sample.tt +2 -0
- data/resources/generators/dashboard/files/dashboard.html.tt +51 -0
- data/resources/generators/dashboard/files/dashboard.js +26 -0
- data/resources/generators/dashboard/templates/_test_report.html.haml +91 -0
- data/resources/generators/todo/templates/todo.md.tt +6 -0
- data/resources/generators/todo/todo_template.rb +1 -0
- data/samples/.gitignore +2 -0
- data/samples/_markdown.md +5 -0
- data/samples/bootstrap.sh +2 -0
- data/samples/clone.sh +2 -0
- data/samples/code2doc.sh +5 -0
- data/samples/default_bootstrap.rb +7 -0
- data/samples/detect.sh +2 -0
- data/samples/exec.sh +2 -0
- data/samples/omnitest.yaml +24 -0
- data/samples/omnitest_simple.yaml +8 -0
- data/samples/scripts/bootstrap +3 -0
- data/samples/show.sh +4 -0
- data/samples/skeptic.yaml +13 -0
- data/samples/skeptic_simple.yaml +9 -0
- data/samples/test.sh +2 -0
- data/samples/tests/omnitest/validators.rb +23 -0
- data/samples/verify.sh +3 -0
- data/scripts/bootstrap.ps1 +7 -0
- data/scripts/run_script.sh +4 -0
- data/skeptic.yaml +26 -0
- data/spec/fabricators/project_fabricator.rb +19 -0
- data/spec/fabricators/scenario_fabricator.rb +6 -0
- data/spec/fabricators/test_manifest_fabricator.rb +41 -0
- data/spec/fabricators/validator_fabricator.rb +12 -0
- data/spec/fixtures/factorial.py +18 -0
- data/spec/fixtures/omnitest.yaml +11 -0
- data/spec/fixtures/skeptic.yaml +16 -0
- data/spec/fixtures/src-doc/_scenario.md.erb +1 -0
- data/spec/fixtures/src-doc/quine.md.erb +20 -0
- data/spec/omnitest/cli_spec.rb +38 -0
- data/spec/omnitest/configuration_spec.rb +25 -0
- data/spec/omnitest/documentation_generator_spec.rb +59 -0
- data/spec/omnitest/file_finder_spec.rb +21 -0
- data/spec/omnitest/project_spec.rb +65 -0
- data/spec/omnitest_spec.rb +13 -0
- data/spec/spec_helper.rb +32 -0
- data/spec/thor_spy.rb +66 -0
- data/tests/omnitest/bootstrap_validations.rb +7 -0
- data/tests/omnitest/show_validations.rb +22 -0
- data/yard_macros.rb +25 -0
- metadata +470 -0
@@ -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 */
|
@@ -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 */
|