Skip to content

Commit e91aef3

Browse files
committed
Add vendor assets from richieland repo
1 parent 1e893e0 commit e91aef3

23 files changed

+1286
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# pygments-css
2+
3+
4+
[Pygments](http://pygments.org), a Python-based code highlighting tool, comes with a set of builtin styles (not css files) for code highlighting. You have to generate a CSS file using the command line.
5+
6+
You can generate these yourself, but this git repository has already generated them for you.
7+
8+
9+
build
10+
-----
11+
12+
These css files were generated using pygmentize on the command line like so::
13+
14+
pygmentize -S default -f html -a .highlight > default.css
15+
16+
You can remove or change the top-level class by removing or modifying `-a .highlight` in the `makefile`.
17+
18+
To regenerate them all with whichever ``pygments`` version you are using, run
19+
20+
git clone <this repo>
21+
cd pygments-css
22+
make cssfiles
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <http://unlicense.org>
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
.highlight .hll { background-color: #ffffcc }
2+
.highlight { background: #ffffff; }
3+
.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
4+
.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
5+
.highlight .k { color: #0000aa } /* Keyword */
6+
.highlight .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */
7+
.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
8+
.highlight .cp { color: #4c8317 } /* Comment.Preproc */
9+
.highlight .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */
10+
.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
11+
.highlight .cs { color: #0000aa; font-style: italic } /* 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: #0000aa } /* Keyword.Constant */
23+
.highlight .kd { color: #0000aa } /* Keyword.Declaration */
24+
.highlight .kn { color: #0000aa } /* Keyword.Namespace */
25+
.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
26+
.highlight .kr { color: #0000aa } /* Keyword.Reserved */
27+
.highlight .kt { color: #00aaaa } /* Keyword.Type */
28+
.highlight .m { color: #009999 } /* Literal.Number */
29+
.highlight .s { color: #aa5500 } /* Literal.String */
30+
.highlight .na { color: #1e90ff } /* Name.Attribute */
31+
.highlight .nb { color: #00aaaa } /* Name.Builtin */
32+
.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
33+
.highlight .no { color: #aa0000 } /* Name.Constant */
34+
.highlight .nd { color: #888888 } /* Name.Decorator */
35+
.highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
36+
.highlight .nf { color: #00aa00 } /* Name.Function */
37+
.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
38+
.highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
39+
.highlight .nv { color: #aa0000 } /* Name.Variable */
40+
.highlight .ow { color: #0000aa } /* Operator.Word */
41+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
42+
.highlight .mb { color: #009999 } /* Literal.Number.Bin */
43+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
44+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
45+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
46+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
47+
.highlight .sa { color: #aa5500 } /* Literal.String.Affix */
48+
.highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
49+
.highlight .sc { color: #aa5500 } /* Literal.String.Char */
50+
.highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */
51+
.highlight .sd { color: #aa5500 } /* Literal.String.Doc */
52+
.highlight .s2 { color: #aa5500 } /* Literal.String.Double */
53+
.highlight .se { color: #aa5500 } /* Literal.String.Escape */
54+
.highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
55+
.highlight .si { color: #aa5500 } /* Literal.String.Interpol */
56+
.highlight .sx { color: #aa5500 } /* Literal.String.Other */
57+
.highlight .sr { color: #009999 } /* Literal.String.Regex */
58+
.highlight .s1 { color: #aa5500 } /* Literal.String.Single */
59+
.highlight .ss { color: #0000aa } /* Literal.String.Symbol */
60+
.highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
61+
.highlight .fm { color: #00aa00 } /* Name.Function.Magic */
62+
.highlight .vc { color: #aa0000 } /* Name.Variable.Class */
63+
.highlight .vg { color: #aa0000 } /* Name.Variable.Global */
64+
.highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
65+
.highlight .vm { color: #aa0000 } /* Name.Variable.Magic */
66+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
.highlight .hll { background-color: #ffffcc }
2+
.highlight { background: #ffffff; }
3+
.highlight .c { color: #008800; font-style: italic } /* Comment */
4+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5+
.highlight .k { color: #000080; font-weight: bold } /* Keyword */
6+
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
7+
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
8+
.highlight .cp { color: #008080 } /* Comment.Preproc */
9+
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
10+
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
11+
.highlight .cs { color: #008800; font-weight: bold } /* 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: #999999 } /* 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: #aaaaaa } /* Generic.Subheading */
21+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
22+
.highlight .kc { color: #000080; font-weight: bold } /* Keyword.Constant */
23+
.highlight .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */
24+
.highlight .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */
25+
.highlight .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */
26+
.highlight .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */
27+
.highlight .kt { color: #000080; font-weight: bold } /* Keyword.Type */
28+
.highlight .m { color: #0000FF } /* Literal.Number */
29+
.highlight .s { color: #0000FF } /* Literal.String */
30+
.highlight .na { color: #FF0000 } /* Name.Attribute */
31+
.highlight .nt { color: #000080; font-weight: bold } /* Name.Tag */
32+
.highlight .ow { font-weight: bold } /* Operator.Word */
33+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
34+
.highlight .mb { color: #0000FF } /* Literal.Number.Bin */
35+
.highlight .mf { color: #0000FF } /* Literal.Number.Float */
36+
.highlight .mh { color: #0000FF } /* Literal.Number.Hex */
37+
.highlight .mi { color: #0000FF } /* Literal.Number.Integer */
38+
.highlight .mo { color: #0000FF } /* Literal.Number.Oct */
39+
.highlight .sa { color: #0000FF } /* Literal.String.Affix */
40+
.highlight .sb { color: #0000FF } /* Literal.String.Backtick */
41+
.highlight .sc { color: #800080 } /* Literal.String.Char */
42+
.highlight .dl { color: #0000FF } /* Literal.String.Delimiter */
43+
.highlight .sd { color: #0000FF } /* Literal.String.Doc */
44+
.highlight .s2 { color: #0000FF } /* Literal.String.Double */
45+
.highlight .se { color: #0000FF } /* Literal.String.Escape */
46+
.highlight .sh { color: #0000FF } /* Literal.String.Heredoc */
47+
.highlight .si { color: #0000FF } /* Literal.String.Interpol */
48+
.highlight .sx { color: #0000FF } /* Literal.String.Other */
49+
.highlight .sr { color: #0000FF } /* Literal.String.Regex */
50+
.highlight .s1 { color: #0000FF } /* Literal.String.Single */
51+
.highlight .ss { color: #0000FF } /* Literal.String.Symbol */
52+
.highlight .il { color: #0000FF } /* Literal.Number.Integer.Long */
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
.highlight .hll { background-color: #ffffcc }
2+
.highlight { background: #ffffff; }
3+
.highlight .c { font-style: italic } /* Comment */
4+
.highlight .err { border: 1px solid #FF0000 } /* Error */
5+
.highlight .k { font-weight: bold } /* Keyword */
6+
.highlight .ch { font-style: italic } /* Comment.Hashbang */
7+
.highlight .cm { font-style: italic } /* Comment.Multiline */
8+
.highlight .cpf { font-style: italic } /* Comment.PreprocFile */
9+
.highlight .c1 { font-style: italic } /* Comment.Single */
10+
.highlight .cs { font-style: italic } /* Comment.Special */
11+
.highlight .ge { font-style: italic } /* Generic.Emph */
12+
.highlight .gh { font-weight: bold } /* Generic.Heading */
13+
.highlight .gp { font-weight: bold } /* Generic.Prompt */
14+
.highlight .gs { font-weight: bold } /* Generic.Strong */
15+
.highlight .gu { font-weight: bold } /* Generic.Subheading */
16+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
17+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
18+
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
19+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
20+
.highlight .s { font-style: italic } /* Literal.String */
21+
.highlight .nc { font-weight: bold } /* Name.Class */
22+
.highlight .ni { font-weight: bold } /* Name.Entity */
23+
.highlight .ne { font-weight: bold } /* Name.Exception */
24+
.highlight .nn { font-weight: bold } /* Name.Namespace */
25+
.highlight .nt { font-weight: bold } /* Name.Tag */
26+
.highlight .ow { font-weight: bold } /* Operator.Word */
27+
.highlight .sa { font-style: italic } /* Literal.String.Affix */
28+
.highlight .sb { font-style: italic } /* Literal.String.Backtick */
29+
.highlight .sc { font-style: italic } /* Literal.String.Char */
30+
.highlight .dl { font-style: italic } /* Literal.String.Delimiter */
31+
.highlight .sd { font-style: italic } /* Literal.String.Doc */
32+
.highlight .s2 { font-style: italic } /* Literal.String.Double */
33+
.highlight .se { font-weight: bold; font-style: italic } /* Literal.String.Escape */
34+
.highlight .sh { font-style: italic } /* Literal.String.Heredoc */
35+
.highlight .si { font-weight: bold; font-style: italic } /* Literal.String.Interpol */
36+
.highlight .sx { font-style: italic } /* Literal.String.Other */
37+
.highlight .sr { font-style: italic } /* Literal.String.Regex */
38+
.highlight .s1 { font-style: italic } /* Literal.String.Single */
39+
.highlight .ss { font-style: italic } /* Literal.String.Symbol */
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
.highlight .hll { background-color: #ffffcc }
2+
.highlight { background: #ffffff; }
3+
.highlight .c { color: #888888 } /* Comment */
4+
.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
5+
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
6+
.highlight .o { color: #333333 } /* Operator */
7+
.highlight .ch { color: #888888 } /* Comment.Hashbang */
8+
.highlight .cm { color: #888888 } /* Comment.Multiline */
9+
.highlight .cp { color: #557799 } /* Comment.Preproc */
10+
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
11+
.highlight .c1 { color: #888888 } /* Comment.Single */
12+
.highlight .cs { color: #cc0000; font-weight: bold } /* 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: #008800; font-weight: bold } /* Keyword.Constant */
24+
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
25+
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
26+
.highlight .kp { color: #003388; font-weight: bold } /* Keyword.Pseudo */
27+
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
28+
.highlight .kt { color: #333399; font-weight: bold } /* Keyword.Type */
29+
.highlight .m { color: #6600EE; font-weight: bold } /* Literal.Number */
30+
.highlight .s { background-color: #fff0f0 } /* Literal.String */
31+
.highlight .na { color: #0000CC } /* Name.Attribute */
32+
.highlight .nb { color: #007020 } /* Name.Builtin */
33+
.highlight .nc { color: #BB0066; font-weight: bold } /* Name.Class */
34+
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
35+
.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
36+
.highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
37+
.highlight .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
38+
.highlight .nf { color: #0066BB; 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: #996633 } /* 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: #0000DD; font-weight: bold } /* Literal.Number.Integer */
49+
.highlight .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
50+
.highlight .sa { background-color: #fff0f0 } /* Literal.String.Affix */
51+
.highlight .sb { background-color: #fff0f0 } /* Literal.String.Backtick */
52+
.highlight .sc { color: #0044DD } /* Literal.String.Char */
53+
.highlight .dl { background-color: #fff0f0 } /* Literal.String.Delimiter */
54+
.highlight .sd { color: #DD4422 } /* Literal.String.Doc */
55+
.highlight .s2 { background-color: #fff0f0 } /* Literal.String.Double */
56+
.highlight .se { color: #666666; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
57+
.highlight .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
58+
.highlight .si { background-color: #eeeeee } /* Literal.String.Interpol */
59+
.highlight .sx { color: #DD2200; background-color: #fff0f0 } /* Literal.String.Other */
60+
.highlight .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
61+
.highlight .s1 { background-color: #fff0f0 } /* Literal.String.Single */
62+
.highlight .ss { color: #AA6600 } /* Literal.String.Symbol */
63+
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
64+
.highlight .fm { color: #0066BB; font-weight: bold } /* Name.Function.Magic */
65+
.highlight .vc { color: #336699 } /* Name.Variable.Class */
66+
.highlight .vg { color: #dd7700; font-weight: bold } /* Name.Variable.Global */
67+
.highlight .vi { color: #3333BB } /* Name.Variable.Instance */
68+
.highlight .vm { color: #996633 } /* Name.Variable.Magic */
69+
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */

0 commit comments

Comments
 (0)