chulapa-jekyll 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +27 -0
- data/LICENSE +21 -0
- data/README.md +126 -0
- data/_includes/components/author.html +40 -0
- data/_includes/components/breadcrumbdatesocial.html +63 -0
- data/_includes/components/categories.html +15 -0
- data/_includes/components/disqus.html +24 -0
- data/_includes/components/headers.html +124 -0
- data/_includes/components/indexcards.html +48 -0
- data/_includes/components/navbeforeafter.html +22 -0
- data/_includes/components/tags.html +15 -0
- data/_includes/components/toc.html +112 -0
- data/_includes/custom/custom_bottomscripts.html +5 -0
- data/_includes/custom/custom_head.html +8 -0
- data/_includes/custom/custom_head_before_css.html +5 -0
- data/_includes/custom/giscus.html +1 -0
- data/_includes/footer.html +129 -0
- data/_includes/head.html +309 -0
- data/_includes/navbar.html +205 -0
- data/_includes/search/algolia.html +3 -0
- data/_includes/search/google.html +11 -0
- data/_includes/search/lunr.html +7 -0
- data/_includes/snippets/bootstrapdemo.html +1390 -0
- data/_includes/snippets/carousel.html +61 -0
- data/_includes/snippets/datetranslate.html +48 -0
- data/_includes/snippets/masonry.html +23 -0
- data/_includes/snippets/video.html +26 -0
- data/_includes/snippets/youtube.html +6 -0
- data/_layouts/archive.html +82 -0
- data/_layouts/cloudcategory.html +89 -0
- data/_layouts/cloudtag.html +86 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +39 -0
- data/_layouts/indexcategory.html +36 -0
- data/_layouts/landingpage.html +51 -0
- data/_layouts/minimal.html +21 -0
- data/_layouts/search.html +59 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +54 -0
- data/_sass/bootstrap/_breadcrumb.scss +44 -0
- data/_sass/bootstrap/_button-group.scss +163 -0
- data/_sass/bootstrap/_buttons.scss +142 -0
- data/_sass/bootstrap/_card.scss +282 -0
- data/_sass/bootstrap/_carousel.scss +197 -0
- data/_sass/bootstrap/_close.scss +40 -0
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +522 -0
- data/_sass/bootstrap/_dropdown.scss +192 -0
- data/_sass/bootstrap/_forms.scss +347 -0
- data/_sass/bootstrap/_functions.scss +141 -0
- data/_sass/bootstrap/_grid.scss +77 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +154 -0
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +47 -0
- data/_sass/bootstrap/_modal.scss +241 -0
- data/_sass/bootstrap/_nav.scss +121 -0
- data/_sass/bootstrap/_navbar.scss +324 -0
- data/_sass/bootstrap/_pagination.scss +74 -0
- data/_sass/bootstrap/_popover.scss +170 -0
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +47 -0
- data/_sass/bootstrap/_reboot.scss +480 -0
- data/_sass/bootstrap/_root.scss +20 -0
- data/_sass/bootstrap/_spinners.scss +56 -0
- data/_sass/bootstrap/_tables.scss +185 -0
- data/_sass/bootstrap/_toasts.scss +44 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +20 -0
- data/_sass/bootstrap/_type.scss +125 -0
- data/_sass/bootstrap/_utilities.scss +18 -0
- data/_sass/bootstrap/_variables.scss +1147 -0
- data/_sass/bootstrap/bootstrap-grid.scss +29 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +44 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +110 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +177 -0
- data/_sass/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/_sass/bootstrap/mixins/_grid.scss +69 -0
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +36 -0
- data/_sass/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +71 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +204 -0
- data/_sass/bootstrapv5-migration.scss +79 -0
- data/_sass/chulapa-classes.scss +844 -0
- data/_sass/chulapa-master.scss +11 -0
- data/_sass/chulapa-misc.scss +105 -0
- data/_sass/chulapa-mixins.scss +77 -0
- data/_sass/chulapa-vars.scss +48 -0
- data/_sass/highlight/README.md +23 -0
- data/_sass/highlight/UNLICENSE.txt +24 -0
- data/_sass/highlight/autumn.scss +58 -0
- data/_sass/highlight/borland.scss +46 -0
- data/_sass/highlight/bw.scss +34 -0
- data/_sass/highlight/colorful.scss +61 -0
- data/_sass/highlight/cran.scss +169 -0
- data/_sass/highlight/default.scss +61 -0
- data/_sass/highlight/dracula.scss +169 -0
- data/_sass/highlight/emacs.scss +61 -0
- data/_sass/highlight/friendly.scss +61 -0
- data/_sass/highlight/fruity.scss +70 -0
- data/_sass/highlight/github.scss +61 -0
- data/_sass/highlight/gruvbox.light.scss +84 -0
- data/_sass/highlight/manni.scss +61 -0
- data/_sass/highlight/monokai.scss +65 -0
- data/_sass/highlight/murphy.scss +61 -0
- data/_sass/highlight/native.scss +70 -0
- data/_sass/highlight/pastie.scss +60 -0
- data/_sass/highlight/perldoc.scss +58 -0
- data/_sass/highlight/skeletor.scss +140 -0
- data/_sass/highlight/tango.scss +69 -0
- data/_sass/highlight/thankful_eyes.scss +173 -0
- data/_sass/highlight/trac.scss +59 -0
- data/_sass/highlight/vim.scss +70 -0
- data/_sass/highlight/vs.scss +33 -0
- data/_sass/highlight/zenburn.scss +136 -0
- data/_sass/reset-algolia.scss +24 -0
- data/_sass/skins/academia.scss +26 -0
- data/_sass/skins/auto.scss +26 -0
- data/_sass/skins/chulapa.scss +52 -0
- data/_sass/skins/deeply.scss +89 -0
- data/_sass/skins/graymor.scss +26 -0
- data/_sass/skins/hootstrap.scss +17 -0
- data/_sass/skins/journal.scss +142 -0
- data/_sass/skins/lux.scss +377 -0
- data/_sass/skins/lymcha.scss +14 -0
- data/_sass/skins/minty.scss +165 -0
- data/_sass/skins/none.scss +2 -0
- data/_sass/skins/pear.scss +21 -0
- data/_sass/skins/preptor.scss +19 -0
- data/_sass/skins/sketchy.scss +745 -0
- data/_sass/skins/sunset.scss +14 -0
- data/_sass/skins/twitter-dim.scss +30 -0
- data/_sass/skins/twitter-lights-out.scss +31 -0
- data/_sass/skins/twitter.scss +30 -0
- data/_sass/skins/universal.scss +24 -0
- data/_sass/skins/wandoo.scss +15 -0
- data/assets/atom.xml +72 -0
- data/assets/css/custom.scss +4 -0
- data/assets/css/highlighter.scss +5 -0
- data/assets/css/main.scss +35 -0
- data/assets/fonts/Chulapa/Chulapa-Bold.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.1.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.2.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_v2.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Bold_vmod.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Light.otf +0 -0
- data/assets/fonts/Chulapa/Chulapa-Regular.otf +0 -0
- data/assets/fonts/Chulapa/LICENCIA DE USO.txt +2 -0
- data/assets/fonts/Ferpal/Ferpal-Regular.otf +0 -0
- data/assets/js/algolia/algolia-search.js +148 -0
- data/assets/js/ch_ytdefer/ch_ytdefer.js +81 -0
- data/assets/js/ch_ytdefer/ch_ytdefer.min.js +1 -0
- data/assets/js/clipboardrouge.js +95 -0
- data/assets/js/google/google-search.js +24 -0
- data/assets/js/lunr/lunr-search.js +122 -0
- data/assets/js/lunr/lunr-store.js +35 -0
- data/assets/rss.xml +65 -0
- metadata +356 -0
@@ -0,0 +1,61 @@
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
2
|
+
.highlight .c { color: #408080; font-style: italic } /* Comment */
|
3
|
+
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
4
|
+
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
|
5
|
+
.highlight .o { color: #666666 } /* Operator */
|
6
|
+
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #408080; 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: #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: #008000; font-weight: bold } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #B00040 } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #666666 } /* Literal.Number */
|
27
|
+
.highlight .s { color: #BA2121 } /* Literal.String */
|
28
|
+
.highlight .na { color: #7D9029 } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #008000 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #0000FF; font-weight: bold } /* 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: #0000FF } /* 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: #19177C } /* 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: #BA2121 } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { color: #BA2121 } /* 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: #BA2121 } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #19177C } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #19177C } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
|
@@ -0,0 +1,169 @@
|
|
1
|
+
/* Dracula Theme v1.2.5
|
2
|
+
*
|
3
|
+
* https://github.com/zenorocha/dracula-theme
|
4
|
+
*
|
5
|
+
* Copyright 2016, All rights reserved
|
6
|
+
*
|
7
|
+
* Code licensed under the MIT license
|
8
|
+
* http://zenorocha.mit-license.org
|
9
|
+
*
|
10
|
+
* @author Rob G <wowmotty@gmail.com>
|
11
|
+
* @author Chris Bracco <chris@cbracco.me>
|
12
|
+
* @author Zeno Rocha <hi@zenorocha.com>
|
13
|
+
* @author Piruin Panichphol <piruin.p@gmail.com>
|
14
|
+
*/
|
15
|
+
|
16
|
+
/*
|
17
|
+
* Variables
|
18
|
+
*/
|
19
|
+
|
20
|
+
$dt-gray-dark: #282a36; // Background
|
21
|
+
$dt-gray: #44475a; // Current Line & Selection
|
22
|
+
$dt-gray-light: #f8f8f2; // Foreground
|
23
|
+
$dt-blue: #6272a4; // Comment
|
24
|
+
$dt-cyan: #8be9fd;
|
25
|
+
$dt-green: #50fa7b;
|
26
|
+
$dt-orange: #ffb86c;
|
27
|
+
$dt-pink: #ff79c6;
|
28
|
+
$dt-purple: #bd93f9;
|
29
|
+
$dt-red: #ff5555;
|
30
|
+
$dt-yellow: #f1fa8c;
|
31
|
+
|
32
|
+
/*
|
33
|
+
* Styles
|
34
|
+
*/
|
35
|
+
|
36
|
+
.highlight {
|
37
|
+
code, pre {
|
38
|
+
background: $dt-gray-dark;
|
39
|
+
color: $dt-gray-light;
|
40
|
+
}
|
41
|
+
|
42
|
+
.hll,
|
43
|
+
.s,
|
44
|
+
.sa,
|
45
|
+
.sb,
|
46
|
+
.sc,
|
47
|
+
.dl,
|
48
|
+
.sd,
|
49
|
+
.s2,
|
50
|
+
.se,
|
51
|
+
.sh,
|
52
|
+
.si,
|
53
|
+
.sx,
|
54
|
+
.sr,
|
55
|
+
.s1,
|
56
|
+
.ss {
|
57
|
+
color: $dt-yellow;
|
58
|
+
}
|
59
|
+
|
60
|
+
.go {
|
61
|
+
color: $dt-gray;
|
62
|
+
}
|
63
|
+
|
64
|
+
.err,
|
65
|
+
.g,
|
66
|
+
.l,
|
67
|
+
.n,
|
68
|
+
.x,
|
69
|
+
.p,
|
70
|
+
.ge,
|
71
|
+
.gr,
|
72
|
+
.gh,
|
73
|
+
.gi,
|
74
|
+
.gp,
|
75
|
+
.gs,
|
76
|
+
.gu,
|
77
|
+
.gt,
|
78
|
+
.ld,
|
79
|
+
.no,
|
80
|
+
.nd,
|
81
|
+
.ni,
|
82
|
+
.ne,
|
83
|
+
.nn,
|
84
|
+
.nx,
|
85
|
+
.py,
|
86
|
+
.w,
|
87
|
+
.bp {
|
88
|
+
color: $dt-gray-light;
|
89
|
+
}
|
90
|
+
|
91
|
+
.gh,
|
92
|
+
.gi,
|
93
|
+
.gu {
|
94
|
+
font-weight: bold;
|
95
|
+
}
|
96
|
+
|
97
|
+
.ge {
|
98
|
+
text-decoration: underline;
|
99
|
+
}
|
100
|
+
|
101
|
+
.bp {
|
102
|
+
font-style: italic;
|
103
|
+
}
|
104
|
+
|
105
|
+
.c,
|
106
|
+
.ch,
|
107
|
+
.cm,
|
108
|
+
.cpf,
|
109
|
+
.c1,
|
110
|
+
.cs {
|
111
|
+
color: $dt-blue;
|
112
|
+
}
|
113
|
+
|
114
|
+
.kd,
|
115
|
+
.kt,
|
116
|
+
.nb,
|
117
|
+
.nl,
|
118
|
+
.nv,
|
119
|
+
.vc,
|
120
|
+
.vg,
|
121
|
+
.vi,
|
122
|
+
.vm {
|
123
|
+
color: $dt-cyan;
|
124
|
+
}
|
125
|
+
|
126
|
+
.kd,
|
127
|
+
.nb,
|
128
|
+
.nl,
|
129
|
+
.nv,
|
130
|
+
.vc,
|
131
|
+
.vg,
|
132
|
+
.vi,
|
133
|
+
.vm {
|
134
|
+
font-style: italic;
|
135
|
+
}
|
136
|
+
|
137
|
+
.na,
|
138
|
+
.nc,
|
139
|
+
.nf,
|
140
|
+
.fm {
|
141
|
+
color: $dt-green;
|
142
|
+
}
|
143
|
+
|
144
|
+
.k,
|
145
|
+
.o,
|
146
|
+
.cp,
|
147
|
+
.kc,
|
148
|
+
.kn,
|
149
|
+
.kp,
|
150
|
+
.kr,
|
151
|
+
.nt,
|
152
|
+
.ow {
|
153
|
+
color: $dt-pink;
|
154
|
+
}
|
155
|
+
|
156
|
+
.m,
|
157
|
+
.mb,
|
158
|
+
.mf,
|
159
|
+
.mh,
|
160
|
+
.mi,
|
161
|
+
.mo,
|
162
|
+
.il {
|
163
|
+
color: $dt-purple;
|
164
|
+
}
|
165
|
+
|
166
|
+
.gd {
|
167
|
+
color: $dt-red;
|
168
|
+
}
|
169
|
+
}
|
@@ -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,70 @@
|
|
1
|
+
.highlight pre { background-color: #333; }
|
2
|
+
.highlight .hll { background-color: #333333 }
|
3
|
+
.highlight .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */
|
4
|
+
.highlight .err { color: #ffffff } /* Error */
|
5
|
+
.highlight .g { color: #ffffff } /* Generic */
|
6
|
+
.highlight .k { color: #fb660a; font-weight: bold } /* Keyword */
|
7
|
+
.highlight .l { color: #ffffff } /* Literal */
|
8
|
+
.highlight .n { color: #ffffff } /* Name */
|
9
|
+
.highlight .o { color: #ffffff } /* Operator */
|
10
|
+
.highlight .x { color: #ffffff } /* Other */
|
11
|
+
.highlight .p { color: #ffffff } /* Punctuation */
|
12
|
+
.highlight .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */
|
13
|
+
.highlight .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */
|
14
|
+
.highlight .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */
|
15
|
+
.highlight .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */
|
16
|
+
.highlight .gd { color: #ffffff } /* Generic.Deleted */
|
17
|
+
.highlight .ge { color: #ffffff } /* Generic.Emph */
|
18
|
+
.highlight .gr { color: #ffffff } /* Generic.Error */
|
19
|
+
.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
20
|
+
.highlight .gi { color: #ffffff } /* Generic.Inserted */
|
21
|
+
.highlight .go { color: #444444; background-color: #222222 } /* Generic.Output */
|
22
|
+
.highlight .gp { color: #ffffff } /* Generic.Prompt */
|
23
|
+
.highlight .gs { color: #ffffff } /* Generic.Strong */
|
24
|
+
.highlight .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
|
25
|
+
.highlight .gt { color: #ffffff } /* Generic.Traceback */
|
26
|
+
.highlight .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */
|
27
|
+
.highlight .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */
|
28
|
+
.highlight .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */
|
29
|
+
.highlight .kp { color: #fb660a } /* Keyword.Pseudo */
|
30
|
+
.highlight .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */
|
31
|
+
.highlight .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */
|
32
|
+
.highlight .ld { color: #ffffff } /* Literal.Date */
|
33
|
+
.highlight .m { color: #0086f7; font-weight: bold } /* Literal.Number */
|
34
|
+
.highlight .s { color: #0086d2 } /* Literal.String */
|
35
|
+
.highlight .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
|
36
|
+
.highlight .nb { color: #ffffff } /* Name.Builtin */
|
37
|
+
.highlight .nc { color: #ffffff } /* Name.Class */
|
38
|
+
.highlight .no { color: #0086d2 } /* Name.Constant */
|
39
|
+
.highlight .nd { color: #ffffff } /* Name.Decorator */
|
40
|
+
.highlight .ni { color: #ffffff } /* Name.Entity */
|
41
|
+
.highlight .ne { color: #ffffff } /* Name.Exception */
|
42
|
+
.highlight .nf { color: #ff0086; font-weight: bold } /* Name.Function */
|
43
|
+
.highlight .nl { color: #ffffff } /* Name.Label */
|
44
|
+
.highlight .nn { color: #ffffff } /* Name.Namespace */
|
45
|
+
.highlight .nx { color: #ffffff } /* Name.Other */
|
46
|
+
.highlight .py { color: #ffffff } /* Name.Property */
|
47
|
+
.highlight .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
|
48
|
+
.highlight .nv { color: #fb660a } /* Name.Variable */
|
49
|
+
.highlight .ow { color: #ffffff } /* Operator.Word */
|
50
|
+
.highlight .w { color: #888888 } /* Text.Whitespace */
|
51
|
+
.highlight .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */
|
52
|
+
.highlight .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */
|
53
|
+
.highlight .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */
|
54
|
+
.highlight .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */
|
55
|
+
.highlight .sb { color: #0086d2 } /* Literal.String.Backtick */
|
56
|
+
.highlight .sc { color: #0086d2 } /* Literal.String.Char */
|
57
|
+
.highlight .sd { color: #0086d2 } /* Literal.String.Doc */
|
58
|
+
.highlight .s2 { color: #0086d2 } /* Literal.String.Double */
|
59
|
+
.highlight .se { color: #0086d2 } /* Literal.String.Escape */
|
60
|
+
.highlight .sh { color: #0086d2 } /* Literal.String.Heredoc */
|
61
|
+
.highlight .si { color: #0086d2 } /* Literal.String.Interpol */
|
62
|
+
.highlight .sx { color: #0086d2 } /* Literal.String.Other */
|
63
|
+
.highlight .sr { color: #0086d2 } /* Literal.String.Regex */
|
64
|
+
.highlight .s1 { color: #0086d2 } /* Literal.String.Single */
|
65
|
+
.highlight .ss { color: #0086d2 } /* Literal.String.Symbol */
|
66
|
+
.highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */
|
67
|
+
.highlight .vc { color: #fb660a } /* Name.Variable.Class */
|
68
|
+
.highlight .vg { color: #fb660a } /* Name.Variable.Global */
|
69
|
+
.highlight .vi { color: #fb660a } /* Name.Variable.Instance */
|
70
|
+
.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,84 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight pre, .highlight .w {
|
4
|
+
color: #282828;
|
5
|
+
background-color: #fbf1c7;
|
6
|
+
}
|
7
|
+
.highlight .err {
|
8
|
+
color: #9d0006;
|
9
|
+
background-color: #fbf1c7;
|
10
|
+
font-weight: bold;
|
11
|
+
}
|
12
|
+
.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
|
13
|
+
color: #928374;
|
14
|
+
font-style: italic;
|
15
|
+
}
|
16
|
+
.highlight .cp {
|
17
|
+
color: #427b58;
|
18
|
+
}
|
19
|
+
.highlight .nt {
|
20
|
+
color: #9d0006;
|
21
|
+
}
|
22
|
+
.highlight .o, .highlight .ow {
|
23
|
+
color: #282828;
|
24
|
+
}
|
25
|
+
.highlight .p, .highlight .pi {
|
26
|
+
color: #282828;
|
27
|
+
}
|
28
|
+
.highlight .gi {
|
29
|
+
color: #79740e;
|
30
|
+
background-color: #fbf1c7;
|
31
|
+
}
|
32
|
+
.highlight .gd {
|
33
|
+
color: #9d0006;
|
34
|
+
background-color: #fbf1c7;
|
35
|
+
}
|
36
|
+
.highlight .gh {
|
37
|
+
color: #79740e;
|
38
|
+
font-weight: bold;
|
39
|
+
}
|
40
|
+
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
|
41
|
+
color: #9d0006;
|
42
|
+
}
|
43
|
+
.highlight .kc {
|
44
|
+
color: #8f3f71;
|
45
|
+
}
|
46
|
+
.highlight .kt {
|
47
|
+
color: #b57614;
|
48
|
+
}
|
49
|
+
.highlight .kd {
|
50
|
+
color: #af3a03;
|
51
|
+
}
|
52
|
+
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
|
53
|
+
color: #79740e;
|
54
|
+
font-style: italic;
|
55
|
+
}
|
56
|
+
.highlight .si {
|
57
|
+
color: #79740e;
|
58
|
+
font-style: italic;
|
59
|
+
}
|
60
|
+
.highlight .sr {
|
61
|
+
color: #79740e;
|
62
|
+
font-style: italic;
|
63
|
+
}
|
64
|
+
.highlight .se {
|
65
|
+
color: #af3a03;
|
66
|
+
}
|
67
|
+
.highlight .nn {
|
68
|
+
color: #427b58;
|
69
|
+
}
|
70
|
+
.highlight .nc {
|
71
|
+
color: #427b58;
|
72
|
+
}
|
73
|
+
.highlight .no {
|
74
|
+
color: #8f3f71;
|
75
|
+
}
|
76
|
+
.highlight .na {
|
77
|
+
color: #79740e;
|
78
|
+
}
|
79
|
+
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
|
80
|
+
color: #8f3f71;
|
81
|
+
}
|
82
|
+
.highlight .ss {
|
83
|
+
color: #076678;
|
84
|
+
}
|
@@ -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 */
|