jekyll-theme-nanusefue 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/head.html +4 -7
  3. data/_includes/nav.html +1 -32
  4. data/_layouts/category.html +4 -4
  5. data/_layouts/default.html +1 -1
  6. data/_layouts/home.html +4 -4
  7. data/_sass/{css/globalstyle.scss → globalstyle.scss} +0 -0
  8. data/_sass/prism.scss +309 -0
  9. data/_sass/{css/stylesheet.scss → stylesheet.scss} +23 -1
  10. data/assets/css/jekyll-theme-nanusefue.scss +8 -0
  11. data/assets/img/loading.gif +0 -0
  12. data/assets/js/_scrip_.js +26 -0
  13. data/assets/js/jquery-3.3.1.min.js +2 -0
  14. data/assets/js/prism.js +139 -1
  15. metadata +8 -28
  16. data/_sass/css/prism.scss +0 -121
  17. data/assets/css/main.scss +0 -6
  18. data/assets/highlighting/README.md +0 -22
  19. data/assets/highlighting/UNLICENSE.txt +0 -24
  20. data/assets/highlighting/autumn.css +0 -66
  21. data/assets/highlighting/borland.css +0 -52
  22. data/assets/highlighting/bw.css +0 -39
  23. data/assets/highlighting/colorful.css +0 -69
  24. data/assets/highlighting/default.css +0 -69
  25. data/assets/highlighting/emacs.css +0 -69
  26. data/assets/highlighting/friendly.css +0 -69
  27. data/assets/highlighting/fruity.css +0 -78
  28. data/assets/highlighting/makefile +0 -33
  29. data/assets/highlighting/manni.css +0 -69
  30. data/assets/highlighting/monokai.css +0 -70
  31. data/assets/highlighting/murphy.css +0 -69
  32. data/assets/highlighting/native.css +0 -78
  33. data/assets/highlighting/package.json +0 -15
  34. data/assets/highlighting/pastie.css +0 -68
  35. data/assets/highlighting/perldoc.css +0 -66
  36. data/assets/highlighting/requirements.txt +0 -1
  37. data/assets/highlighting/tango.css +0 -77
  38. data/assets/highlighting/trac.css +0 -67
  39. data/assets/highlighting/vim.css +0 -78
  40. data/assets/highlighting/vs.css +0 -38
@@ -1,33 +0,0 @@
1
- # make sure you already ran pip install -r requirements.txt
2
- #
3
- # syntax
4
- # pygmentize -S <style> -f <formatter> [-a <arg>] [-O <options>] [-P <option=value>]
5
- # (pygmentize documentation is pretty scattered and confusing, but the "-a" will add other classes
6
- # to the output)
7
-
8
-
9
- STYLES = autumn
10
- STYLES += borland
11
- STYLES += bw
12
- STYLES += colorful
13
- STYLES += default
14
- STYLES += emacs
15
- STYLES += friendly
16
- STYLES += fruity
17
- STYLES += manni
18
- STYLES += monokai
19
- STYLES += murphy
20
- STYLES += native
21
- STYLES += pastie
22
- STYLES += perldoc
23
- STYLES += tango
24
- STYLES += trac
25
- STYLES += vim
26
- STYLES += vs
27
-
28
- # a recursively-expanding variable, so that its value contains an actual function call to be
29
- # re-expanded under the control of foreach
30
- gen_html = pygmentize -S $(style) -f html -a .highlight > $(style).css;
31
-
32
- cssfiles:
33
- @$(foreach style, $(STYLES), $(gen_html))
@@ -1,69 +0,0 @@
1
- .highlight .hll { background-color: #ffffcc }
2
- .highlight { background: #f0f3f3; }
3
- .highlight .c { color: #0099FF; font-style: italic } /* Comment */
4
- .highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
5
- .highlight .k { color: #006699; font-weight: bold } /* Keyword */
6
- .highlight .o { color: #555555 } /* Operator */
7
- .highlight .ch { color: #0099FF; font-style: italic } /* Comment.Hashbang */
8
- .highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
9
- .highlight .cp { color: #009999 } /* Comment.Preproc */
10
- .highlight .cpf { color: #0099FF; font-style: italic } /* Comment.PreprocFile */
11
- .highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
12
- .highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
13
- .highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
14
- .highlight .ge { font-style: italic } /* Generic.Emph */
15
- .highlight .gr { color: #FF0000 } /* Generic.Error */
16
- .highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
17
- .highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
18
- .highlight .go { color: #AAAAAA } /* Generic.Output */
19
- .highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
20
- .highlight .gs { font-weight: bold } /* Generic.Strong */
21
- .highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
22
- .highlight .gt { color: #99CC66 } /* Generic.Traceback */
23
- .highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
24
- .highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
25
- .highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
26
- .highlight .kp { color: #006699 } /* Keyword.Pseudo */
27
- .highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
28
- .highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
29
- .highlight .m { color: #FF6600 } /* Literal.Number */
30
- .highlight .s { color: #CC3300 } /* Literal.String */
31
- .highlight .na { color: #330099 } /* Name.Attribute */
32
- .highlight .nb { color: #336666 } /* Name.Builtin */
33
- .highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
34
- .highlight .no { color: #336600 } /* Name.Constant */
35
- .highlight .nd { color: #9999FF } /* Name.Decorator */
36
- .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
37
- .highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
38
- .highlight .nf { color: #CC00FF } /* Name.Function */
39
- .highlight .nl { color: #9999FF } /* Name.Label */
40
- .highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
41
- .highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
42
- .highlight .nv { color: #003333 } /* Name.Variable */
43
- .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
44
- .highlight .w { color: #bbbbbb } /* Text.Whitespace */
45
- .highlight .mb { color: #FF6600 } /* Literal.Number.Bin */
46
- .highlight .mf { color: #FF6600 } /* Literal.Number.Float */
47
- .highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
48
- .highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
49
- .highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
50
- .highlight .sa { color: #CC3300 } /* Literal.String.Affix */
51
- .highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
52
- .highlight .sc { color: #CC3300 } /* Literal.String.Char */
53
- .highlight .dl { color: #CC3300 } /* Literal.String.Delimiter */
54
- .highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
55
- .highlight .s2 { color: #CC3300 } /* Literal.String.Double */
56
- .highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
57
- .highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
58
- .highlight .si { color: #AA0000 } /* Literal.String.Interpol */
59
- .highlight .sx { color: #CC3300 } /* Literal.String.Other */
60
- .highlight .sr { color: #33AAAA } /* Literal.String.Regex */
61
- .highlight .s1 { color: #CC3300 } /* Literal.String.Single */
62
- .highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
63
- .highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
64
- .highlight .fm { color: #CC00FF } /* Name.Function.Magic */
65
- .highlight .vc { color: #003333 } /* Name.Variable.Class */
66
- .highlight .vg { color: #003333 } /* Name.Variable.Global */
67
- .highlight .vi { color: #003333 } /* Name.Variable.Instance */
68
- .highlight .vm { color: #003333 } /* Name.Variable.Magic */
69
- .highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
@@ -1,70 +0,0 @@
1
- .highlight .hll { background-color: #49483e }
2
- .highlight { background: #272822; color: #f8f8f2 }
3
- .highlight .c { color: #75715e } /* Comment */
4
- .highlight .err { color: #960050; background-color: #1e0010 } /* Error */
5
- .highlight .k { color: #66d9ef } /* Keyword */
6
- .highlight .l { color: #ae81ff } /* Literal */
7
- .highlight .n { color: #f8f8f2 } /* Name */
8
- .highlight .o { color: #f92672 } /* Operator */
9
- .highlight .p { color: #f8f8f2 } /* Punctuation */
10
- .highlight .ch { color: #75715e } /* Comment.Hashbang */
11
- .highlight .cm { color: #75715e } /* Comment.Multiline */
12
- .highlight .cp { color: #75715e } /* Comment.Preproc */
13
- .highlight .cpf { color: #75715e } /* Comment.PreprocFile */
14
- .highlight .c1 { color: #75715e } /* Comment.Single */
15
- .highlight .cs { color: #75715e } /* Comment.Special */
16
- .highlight .gd { color: #f92672 } /* Generic.Deleted */
17
- .highlight .ge { font-style: italic } /* Generic.Emph */
18
- .highlight .gi { color: #a6e22e } /* Generic.Inserted */
19
- .highlight .gs { font-weight: bold } /* Generic.Strong */
20
- .highlight .gu { color: #75715e } /* Generic.Subheading */
21
- .highlight .kc { color: #66d9ef } /* Keyword.Constant */
22
- .highlight .kd { color: #66d9ef } /* Keyword.Declaration */
23
- .highlight .kn { color: #f92672 } /* Keyword.Namespace */
24
- .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
25
- .highlight .kr { color: #66d9ef } /* Keyword.Reserved */
26
- .highlight .kt { color: #66d9ef } /* Keyword.Type */
27
- .highlight .ld { color: #e6db74 } /* Literal.Date */
28
- .highlight .m { color: #ae81ff } /* Literal.Number */
29
- .highlight .s { color: #e6db74 } /* Literal.String */
30
- .highlight .na { color: #a6e22e } /* Name.Attribute */
31
- .highlight .nb { color: #f8f8f2 } /* Name.Builtin */
32
- .highlight .nc { color: #a6e22e } /* Name.Class */
33
- .highlight .no { color: #66d9ef } /* Name.Constant */
34
- .highlight .nd { color: #a6e22e } /* Name.Decorator */
35
- .highlight .ni { color: #f8f8f2 } /* Name.Entity */
36
- .highlight .ne { color: #a6e22e } /* Name.Exception */
37
- .highlight .nf { color: #a6e22e } /* Name.Function */
38
- .highlight .nl { color: #f8f8f2 } /* Name.Label */
39
- .highlight .nn { color: #f8f8f2 } /* Name.Namespace */
40
- .highlight .nx { color: #a6e22e } /* Name.Other */
41
- .highlight .py { color: #f8f8f2 } /* Name.Property */
42
- .highlight .nt { color: #f92672 } /* Name.Tag */
43
- .highlight .nv { color: #f8f8f2 } /* Name.Variable */
44
- .highlight .ow { color: #f92672 } /* Operator.Word */
45
- .highlight .w { color: #f8f8f2 } /* Text.Whitespace */
46
- .highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
47
- .highlight .mf { color: #ae81ff } /* Literal.Number.Float */
48
- .highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
49
- .highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
50
- .highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
51
- .highlight .sa { color: #e6db74 } /* Literal.String.Affix */
52
- .highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
53
- .highlight .sc { color: #e6db74 } /* Literal.String.Char */
54
- .highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */
55
- .highlight .sd { color: #e6db74 } /* Literal.String.Doc */
56
- .highlight .s2 { color: #e6db74 } /* Literal.String.Double */
57
- .highlight .se { color: #ae81ff } /* Literal.String.Escape */
58
- .highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
59
- .highlight .si { color: #e6db74 } /* Literal.String.Interpol */
60
- .highlight .sx { color: #e6db74 } /* Literal.String.Other */
61
- .highlight .sr { color: #e6db74 } /* Literal.String.Regex */
62
- .highlight .s1 { color: #e6db74 } /* Literal.String.Single */
63
- .highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
64
- .highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
65
- .highlight .fm { color: #a6e22e } /* Name.Function.Magic */
66
- .highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
67
- .highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
68
- .highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
69
- .highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */
70
- .highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
@@ -1,69 +0,0 @@
1
- .highlight .hll { background-color: #ffffcc }
2
- .highlight { background: #ffffff; }
3
- .highlight .c { color: #666666; font-style: italic } /* Comment */
4
- .highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
5
- .highlight .k { color: #228899; font-weight: bold } /* Keyword */
6
- .highlight .o { color: #333333 } /* Operator */
7
- .highlight .ch { color: #666666; font-style: italic } /* Comment.Hashbang */
8
- .highlight .cm { color: #666666; font-style: italic } /* Comment.Multiline */
9
- .highlight .cp { color: #557799 } /* Comment.Preproc */
10
- .highlight .cpf { color: #666666; font-style: italic } /* Comment.PreprocFile */
11
- .highlight .c1 { color: #666666; font-style: italic } /* Comment.Single */
12
- .highlight .cs { color: #cc0000; font-weight: bold; font-style: italic } /* Comment.Special */
13
- .highlight .gd { color: #A00000 } /* Generic.Deleted */
14
- .highlight .ge { font-style: italic } /* Generic.Emph */
15
- .highlight .gr { color: #FF0000 } /* Generic.Error */
16
- .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
17
- .highlight .gi { color: #00A000 } /* Generic.Inserted */
18
- .highlight .go { color: #888888 } /* Generic.Output */
19
- .highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
20
- .highlight .gs { font-weight: bold } /* Generic.Strong */
21
- .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
22
- .highlight .gt { color: #0044DD } /* Generic.Traceback */
23
- .highlight .kc { color: #228899; font-weight: bold } /* Keyword.Constant */
24
- .highlight .kd { color: #228899; font-weight: bold } /* Keyword.Declaration */
25
- .highlight .kn { color: #228899; font-weight: bold } /* Keyword.Namespace */
26
- .highlight .kp { color: #0088ff; font-weight: bold } /* Keyword.Pseudo */
27
- .highlight .kr { color: #228899; font-weight: bold } /* Keyword.Reserved */
28
- .highlight .kt { color: #6666ff; font-weight: bold } /* Keyword.Type */
29
- .highlight .m { color: #6600EE; font-weight: bold } /* Literal.Number */
30
- .highlight .s { background-color: #e0e0ff } /* Literal.String */
31
- .highlight .na { color: #000077 } /* Name.Attribute */
32
- .highlight .nb { color: #007722 } /* Name.Builtin */
33
- .highlight .nc { color: #ee99ee; font-weight: bold } /* Name.Class */
34
- .highlight .no { color: #55eedd; font-weight: bold } /* Name.Constant */
35
- .highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
36
- .highlight .ni { color: #880000 } /* Name.Entity */
37
- .highlight .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
38
- .highlight .nf { color: #55eedd; font-weight: bold } /* Name.Function */
39
- .highlight .nl { color: #997700; font-weight: bold } /* Name.Label */
40
- .highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
41
- .highlight .nt { color: #007700 } /* Name.Tag */
42
- .highlight .nv { color: #003366 } /* Name.Variable */
43
- .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
44
- .highlight .w { color: #bbbbbb } /* Text.Whitespace */
45
- .highlight .mb { color: #6600EE; font-weight: bold } /* Literal.Number.Bin */
46
- .highlight .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
47
- .highlight .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
48
- .highlight .mi { color: #6666ff; font-weight: bold } /* Literal.Number.Integer */
49
- .highlight .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
50
- .highlight .sa { background-color: #e0e0ff } /* Literal.String.Affix */
51
- .highlight .sb { background-color: #e0e0ff } /* Literal.String.Backtick */
52
- .highlight .sc { color: #8888FF } /* Literal.String.Char */
53
- .highlight .dl { background-color: #e0e0ff } /* Literal.String.Delimiter */
54
- .highlight .sd { color: #DD4422 } /* Literal.String.Doc */
55
- .highlight .s2 { background-color: #e0e0ff } /* Literal.String.Double */
56
- .highlight .se { color: #666666; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */
57
- .highlight .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */
58
- .highlight .si { background-color: #eeeeee } /* Literal.String.Interpol */
59
- .highlight .sx { color: #ff8888; background-color: #e0e0ff } /* Literal.String.Other */
60
- .highlight .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */
61
- .highlight .s1 { background-color: #e0e0ff } /* Literal.String.Single */
62
- .highlight .ss { color: #ffcc88 } /* Literal.String.Symbol */
63
- .highlight .bp { color: #007722 } /* Name.Builtin.Pseudo */
64
- .highlight .fm { color: #55eedd; font-weight: bold } /* Name.Function.Magic */
65
- .highlight .vc { color: #ccccff } /* Name.Variable.Class */
66
- .highlight .vg { color: #ff8844 } /* Name.Variable.Global */
67
- .highlight .vi { color: #aaaaff } /* Name.Variable.Instance */
68
- .highlight .vm { color: #003366 } /* Name.Variable.Magic */
69
- .highlight .il { color: #6666ff; font-weight: bold } /* Literal.Number.Integer.Long */
@@ -1,78 +0,0 @@
1
- .highlight .hll { background-color: #404040 }
2
- .highlight { background: #202020; color: #d0d0d0 }
3
- .highlight .c { color: #999999; font-style: italic } /* Comment */
4
- .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5
- .highlight .esc { color: #d0d0d0 } /* Escape */
6
- .highlight .g { color: #d0d0d0 } /* Generic */
7
- .highlight .k { color: #6ab825; font-weight: bold } /* Keyword */
8
- .highlight .l { color: #d0d0d0 } /* Literal */
9
- .highlight .n { color: #d0d0d0 } /* Name */
10
- .highlight .o { color: #d0d0d0 } /* Operator */
11
- .highlight .x { color: #d0d0d0 } /* Other */
12
- .highlight .p { color: #d0d0d0 } /* Punctuation */
13
- .highlight .ch { color: #999999; font-style: italic } /* Comment.Hashbang */
14
- .highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */
15
- .highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
16
- .highlight .cpf { color: #999999; font-style: italic } /* Comment.PreprocFile */
17
- .highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */
18
- .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
19
- .highlight .gd { color: #d22323 } /* Generic.Deleted */
20
- .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
21
- .highlight .gr { color: #d22323 } /* Generic.Error */
22
- .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
23
- .highlight .gi { color: #589819 } /* Generic.Inserted */
24
- .highlight .go { color: #cccccc } /* Generic.Output */
25
- .highlight .gp { color: #aaaaaa } /* Generic.Prompt */
26
- .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
27
- .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
28
- .highlight .gt { color: #d22323 } /* Generic.Traceback */
29
- .highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
30
- .highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
31
- .highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
32
- .highlight .kp { color: #6ab825 } /* Keyword.Pseudo */
33
- .highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
34
- .highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
35
- .highlight .ld { color: #d0d0d0 } /* Literal.Date */
36
- .highlight .m { color: #3677a9 } /* Literal.Number */
37
- .highlight .s { color: #ed9d13 } /* Literal.String */
38
- .highlight .na { color: #bbbbbb } /* Name.Attribute */
39
- .highlight .nb { color: #24909d } /* Name.Builtin */
40
- .highlight .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
41
- .highlight .no { color: #40ffff } /* Name.Constant */
42
- .highlight .nd { color: #ffa500 } /* Name.Decorator */
43
- .highlight .ni { color: #d0d0d0 } /* Name.Entity */
44
- .highlight .ne { color: #bbbbbb } /* Name.Exception */
45
- .highlight .nf { color: #447fcf } /* Name.Function */
46
- .highlight .nl { color: #d0d0d0 } /* Name.Label */
47
- .highlight .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
48
- .highlight .nx { color: #d0d0d0 } /* Name.Other */
49
- .highlight .py { color: #d0d0d0 } /* Name.Property */
50
- .highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
51
- .highlight .nv { color: #40ffff } /* Name.Variable */
52
- .highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
53
- .highlight .w { color: #666666 } /* Text.Whitespace */
54
- .highlight .mb { color: #3677a9 } /* Literal.Number.Bin */
55
- .highlight .mf { color: #3677a9 } /* Literal.Number.Float */
56
- .highlight .mh { color: #3677a9 } /* Literal.Number.Hex */
57
- .highlight .mi { color: #3677a9 } /* Literal.Number.Integer */
58
- .highlight .mo { color: #3677a9 } /* Literal.Number.Oct */
59
- .highlight .sa { color: #ed9d13 } /* Literal.String.Affix */
60
- .highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */
61
- .highlight .sc { color: #ed9d13 } /* Literal.String.Char */
62
- .highlight .dl { color: #ed9d13 } /* Literal.String.Delimiter */
63
- .highlight .sd { color: #ed9d13 } /* Literal.String.Doc */
64
- .highlight .s2 { color: #ed9d13 } /* Literal.String.Double */
65
- .highlight .se { color: #ed9d13 } /* Literal.String.Escape */
66
- .highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */
67
- .highlight .si { color: #ed9d13 } /* Literal.String.Interpol */
68
- .highlight .sx { color: #ffa500 } /* Literal.String.Other */
69
- .highlight .sr { color: #ed9d13 } /* Literal.String.Regex */
70
- .highlight .s1 { color: #ed9d13 } /* Literal.String.Single */
71
- .highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */
72
- .highlight .bp { color: #24909d } /* Name.Builtin.Pseudo */
73
- .highlight .fm { color: #447fcf } /* Name.Function.Magic */
74
- .highlight .vc { color: #40ffff } /* Name.Variable.Class */
75
- .highlight .vg { color: #40ffff } /* Name.Variable.Global */
76
- .highlight .vi { color: #40ffff } /* Name.Variable.Instance */
77
- .highlight .vm { color: #40ffff } /* Name.Variable.Magic */
78
- .highlight .il { color: #3677a9 } /* Literal.Number.Integer.Long */
@@ -1,15 +0,0 @@
1
- {
2
- "name": "pygments-css",
3
- "version": "1.0.0",
4
- "description": "CSS stylesheets for pygments",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://github.com/richleland/pygments-css.git"
8
- },
9
- "keywords": ["pygments", "css", "highlighting"],
10
- "license": "UNLICENSE",
11
- "bugs": {
12
- "url": "https://github.com/richleland/pygments-css/issues"
13
- },
14
- "homepage": "https://github.com/richleland/pygments-css#readme"
15
- }
@@ -1,68 +0,0 @@
1
- .highlight .hll { background-color: #ffffcc }
2
- .highlight { background: #ffffff; }
3
- .highlight .c { color: #888888 } /* Comment */
4
- .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5
- .highlight .k { color: #008800; font-weight: bold } /* Keyword */
6
- .highlight .ch { color: #888888 } /* Comment.Hashbang */
7
- .highlight .cm { color: #888888 } /* Comment.Multiline */
8
- .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
9
- .highlight .cpf { color: #888888 } /* Comment.PreprocFile */
10
- .highlight .c1 { color: #888888 } /* Comment.Single */
11
- .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
12
- .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
13
- .highlight .ge { font-style: italic } /* Generic.Emph */
14
- .highlight .gr { color: #aa0000 } /* Generic.Error */
15
- .highlight .gh { color: #333333 } /* Generic.Heading */
16
- .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
17
- .highlight .go { color: #888888 } /* Generic.Output */
18
- .highlight .gp { color: #555555 } /* Generic.Prompt */
19
- .highlight .gs { font-weight: bold } /* Generic.Strong */
20
- .highlight .gu { color: #666666 } /* Generic.Subheading */
21
- .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22
- .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
23
- .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
24
- .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
25
- .highlight .kp { color: #008800 } /* Keyword.Pseudo */
26
- .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
27
- .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
28
- .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
29
- .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
30
- .highlight .na { color: #336699 } /* Name.Attribute */
31
- .highlight .nb { color: #003388 } /* Name.Builtin */
32
- .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
33
- .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
34
- .highlight .nd { color: #555555 } /* Name.Decorator */
35
- .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
36
- .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
37
- .highlight .nl { color: #336699; font-style: italic } /* Name.Label */
38
- .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
39
- .highlight .py { color: #336699; font-weight: bold } /* Name.Property */
40
- .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
41
- .highlight .nv { color: #336699 } /* Name.Variable */
42
- .highlight .ow { color: #008800 } /* Operator.Word */
43
- .highlight .w { color: #bbbbbb } /* Text.Whitespace */
44
- .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
45
- .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
46
- .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
47
- .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
48
- .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
49
- .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
50
- .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
51
- .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
52
- .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
53
- .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
54
- .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
55
- .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
56
- .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
57
- .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
58
- .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
59
- .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
60
- .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
61
- .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
62
- .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
63
- .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
64
- .highlight .vc { color: #336699 } /* Name.Variable.Class */
65
- .highlight .vg { color: #dd7700 } /* Name.Variable.Global */
66
- .highlight .vi { color: #3333bb } /* Name.Variable.Instance */
67
- .highlight .vm { color: #336699 } /* Name.Variable.Magic */
68
- .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
@@ -1,66 +0,0 @@
1
- .highlight .hll { background-color: #ffffcc }
2
- .highlight { background: #eeeedd; }
3
- .highlight .c { color: #228B22 } /* Comment */
4
- .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5
- .highlight .k { color: #8B008B; font-weight: bold } /* Keyword */
6
- .highlight .ch { color: #228B22 } /* Comment.Hashbang */
7
- .highlight .cm { color: #228B22 } /* Comment.Multiline */
8
- .highlight .cp { color: #1e889b } /* Comment.Preproc */
9
- .highlight .cpf { color: #228B22 } /* Comment.PreprocFile */
10
- .highlight .c1 { color: #228B22 } /* Comment.Single */
11
- .highlight .cs { color: #8B008B; font-weight: bold } /* Comment.Special */
12
- .highlight .gd { color: #aa0000 } /* Generic.Deleted */
13
- .highlight .ge { font-style: italic } /* Generic.Emph */
14
- .highlight .gr { color: #aa0000 } /* Generic.Error */
15
- .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
16
- .highlight .gi { color: #00aa00 } /* Generic.Inserted */
17
- .highlight .go { color: #888888 } /* Generic.Output */
18
- .highlight .gp { color: #555555 } /* Generic.Prompt */
19
- .highlight .gs { font-weight: bold } /* Generic.Strong */
20
- .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
21
- .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22
- .highlight .kc { color: #8B008B; font-weight: bold } /* Keyword.Constant */
23
- .highlight .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */
24
- .highlight .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */
25
- .highlight .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */
26
- .highlight .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */
27
- .highlight .kt { color: #00688B; font-weight: bold } /* Keyword.Type */
28
- .highlight .m { color: #B452CD } /* Literal.Number */
29
- .highlight .s { color: #CD5555 } /* Literal.String */
30
- .highlight .na { color: #658b00 } /* Name.Attribute */
31
- .highlight .nb { color: #658b00 } /* Name.Builtin */
32
- .highlight .nc { color: #008b45; font-weight: bold } /* Name.Class */
33
- .highlight .no { color: #00688B } /* Name.Constant */
34
- .highlight .nd { color: #707a7c } /* Name.Decorator */
35
- .highlight .ne { color: #008b45; font-weight: bold } /* Name.Exception */
36
- .highlight .nf { color: #008b45 } /* Name.Function */
37
- .highlight .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */
38
- .highlight .nt { color: #8B008B; font-weight: bold } /* Name.Tag */
39
- .highlight .nv { color: #00688B } /* Name.Variable */
40
- .highlight .ow { color: #8B008B } /* Operator.Word */
41
- .highlight .w { color: #bbbbbb } /* Text.Whitespace */
42
- .highlight .mb { color: #B452CD } /* Literal.Number.Bin */
43
- .highlight .mf { color: #B452CD } /* Literal.Number.Float */
44
- .highlight .mh { color: #B452CD } /* Literal.Number.Hex */
45
- .highlight .mi { color: #B452CD } /* Literal.Number.Integer */
46
- .highlight .mo { color: #B452CD } /* Literal.Number.Oct */
47
- .highlight .sa { color: #CD5555 } /* Literal.String.Affix */
48
- .highlight .sb { color: #CD5555 } /* Literal.String.Backtick */
49
- .highlight .sc { color: #CD5555 } /* Literal.String.Char */
50
- .highlight .dl { color: #CD5555 } /* Literal.String.Delimiter */
51
- .highlight .sd { color: #CD5555 } /* Literal.String.Doc */
52
- .highlight .s2 { color: #CD5555 } /* Literal.String.Double */
53
- .highlight .se { color: #CD5555 } /* Literal.String.Escape */
54
- .highlight .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */
55
- .highlight .si { color: #CD5555 } /* Literal.String.Interpol */
56
- .highlight .sx { color: #cb6c20 } /* Literal.String.Other */
57
- .highlight .sr { color: #1c7e71 } /* Literal.String.Regex */
58
- .highlight .s1 { color: #CD5555 } /* Literal.String.Single */
59
- .highlight .ss { color: #CD5555 } /* Literal.String.Symbol */
60
- .highlight .bp { color: #658b00 } /* Name.Builtin.Pseudo */
61
- .highlight .fm { color: #008b45 } /* Name.Function.Magic */
62
- .highlight .vc { color: #00688B } /* Name.Variable.Class */
63
- .highlight .vg { color: #00688B } /* Name.Variable.Global */
64
- .highlight .vi { color: #00688B } /* Name.Variable.Instance */
65
- .highlight .vm { color: #00688B } /* Name.Variable.Magic */
66
- .highlight .il { color: #B452CD } /* Literal.Number.Integer.Long */