just-the-hm-docs 1.0.0.rc1
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/LICENSE.txt +21 -0
- data/README.md +24 -0
- data/Rakefile +1 -0
- data/_includes/components/aux_nav.html +15 -0
- data/_includes/components/breadcrumbs.html +15 -0
- data/_includes/components/children_nav.html +9 -0
- data/_includes/components/footer.html +34 -0
- data/_includes/components/header.html +11 -0
- data/_includes/components/mermaid.html +5 -0
- data/_includes/components/search_footer.html +7 -0
- data/_includes/components/search_header.html +9 -0
- data/_includes/components/sidebar.html +69 -0
- data/_includes/css/callouts.scss.liquid +93 -0
- data/_includes/css/custom.scss.liquid +1 -0
- data/_includes/css/just-the-docs.scss.liquid +10 -0
- data/_includes/fix_linenos.html +65 -0
- data/_includes/footer_custom.html +3 -0
- data/_includes/head.html +46 -0
- data/_includes/head_custom.html +4 -0
- data/_includes/header_custom.html +0 -0
- data/_includes/icons/code_copy.html +15 -0
- data/_includes/icons/document.html +6 -0
- data/_includes/icons/expand.html +6 -0
- data/_includes/icons/external_link.html +5 -0
- data/_includes/icons/icons.html +13 -0
- data/_includes/icons/link.html +6 -0
- data/_includes/icons/menu.html +6 -0
- data/_includes/icons/search.html +6 -0
- data/_includes/js/custom.js +0 -0
- data/_includes/lunr/custom-data.json +0 -0
- data/_includes/lunr/custom-index.js +0 -0
- data/_includes/mermaid_config.js +1 -0
- data/_includes/nav.html +251 -0
- data/_includes/nav_footer_custom.html +0 -0
- data/_includes/search_placeholder_custom.html +1 -0
- data/_includes/title.html +5 -0
- data/_includes/toc_heading_custom.html +1 -0
- data/_includes/vendor/anchor_headings.html +172 -0
- data/_layouts/about.html +5 -0
- data/_layouts/default.html +41 -0
- data/_layouts/home.html +5 -0
- data/_layouts/minimal.html +60 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_layouts/table_wrappers.html +7 -0
- data/_layouts/vendor/compress.html +10 -0
- data/_sass/base.scss +114 -0
- data/_sass/buttons.scss +113 -0
- data/_sass/code.scss +210 -0
- data/_sass/color_schemes/dark.scss +28 -0
- data/_sass/color_schemes/hm.scss +26 -0
- data/_sass/color_schemes/light.scss +208 -0
- data/_sass/content.scss +239 -0
- data/_sass/custom/custom.scss +30 -0
- data/_sass/custom/hm-branding.scss +259 -0
- data/_sass/custom/hm-code.scss +153 -0
- data/_sass/custom/hm-colors.scss +15 -0
- data/_sass/custom/hm-notes.scss +38 -0
- data/_sass/custom/setup.scss +160 -0
- data/_sass/labels.scss +33 -0
- data/_sass/layout.scss +206 -0
- data/_sass/modules.scss +17 -0
- data/_sass/navigation.scss +235 -0
- data/_sass/print.scss +40 -0
- data/_sass/search.scss +311 -0
- data/_sass/skiptomain.scss +30 -0
- data/_sass/support/_functions.scss +11 -0
- data/_sass/support/_variables.scss +129 -0
- data/_sass/support/mixins/_buttons.scss +27 -0
- data/_sass/support/mixins/_layout.scss +34 -0
- data/_sass/support/mixins/_typography.scss +84 -0
- data/_sass/support/mixins/mixins.scss +3 -0
- data/_sass/support/support.scss +3 -0
- data/_sass/tables.scss +54 -0
- data/_sass/typography.scss +63 -0
- data/_sass/utilities/_colors.scss +237 -0
- data/_sass/utilities/_layout.scss +101 -0
- data/_sass/utilities/_lists.scss +15 -0
- data/_sass/utilities/_spacing.scss +162 -0
- data/_sass/utilities/_typography.scss +85 -0
- data/_sass/utilities/utilities.scss +5 -0
- data/_sass/vendor/OneDarkJekyll/LICENSE +21 -0
- data/_sass/vendor/OneDarkJekyll/README.md +25 -0
- data/_sass/vendor/OneDarkJekyll/colors.less +30 -0
- data/_sass/vendor/OneDarkJekyll/syntax-firewatch-green.scss +200 -0
- data/_sass/vendor/OneDarkJekyll/syntax-firewatch.scss +200 -0
- data/_sass/vendor/OneDarkJekyll/syntax-one-dark-vivid.scss +200 -0
- data/_sass/vendor/OneDarkJekyll/syntax-one-dark.scss +200 -0
- data/_sass/vendor/OneDarkJekyll/syntax-variables.less +56 -0
- data/_sass/vendor/OneDarkJekyll/syntax.less +93 -0
- data/_sass/vendor/normalize.scss/README.md +7 -0
- data/_sass/vendor/normalize.scss/normalize.scss +351 -0
- data/assets/css/just-the-docs-dark.scss +3 -0
- data/assets/css/just-the-docs-default.scss +8 -0
- data/assets/css/just-the-docs-light.scss +3 -0
- data/assets/favicon/android-chrome-192x192.png +0 -0
- data/assets/favicon/android-chrome-512x512.png +0 -0
- data/assets/favicon/apple-touch-icon.png +0 -0
- data/assets/favicon/favicon-16x16.png +0 -0
- data/assets/favicon/favicon-32x32.png +0 -0
- data/assets/favicon/favicon.ico +0 -0
- data/assets/favicon/site.webmanifest +1 -0
- data/assets/images/.gitkeep +0 -0
- data/assets/images/hm-logo.svg +1 -0
- data/assets/images/search.svg +1 -0
- data/assets/js/just-the-docs.js +528 -0
- data/assets/js/vendor/lunr.min.js +61 -0
- data/assets/js/zzzz-search-data.json +74 -0
- data/bin/just-the-hm-docs +16 -0
- data/changelog.md +17 -0
- data/favicon.ico +0 -0
- data/lib/tasks/search.rake +88 -0
- metadata +217 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// Config -----------------------------------
|
|
2
|
+
@syntax-hue: 220;
|
|
3
|
+
@syntax-saturation: 13%;
|
|
4
|
+
@syntax-brightness: 18%;
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
// Monochrome -----------------------------------
|
|
8
|
+
@mono-1: hsl(@syntax-hue, 14%, 71%); // default text
|
|
9
|
+
@mono-2: hsl(@syntax-hue, 9%, 55%);
|
|
10
|
+
@mono-3: hsl(@syntax-hue, 10%, 40%);
|
|
11
|
+
|
|
12
|
+
// Colors -----------------------------------
|
|
13
|
+
@hue-1: hsl(187, 47%, 55%); // <-cyan
|
|
14
|
+
@hue-2: hsl(207, 82%, 66%); // <-blue
|
|
15
|
+
@hue-3: hsl(286, 60%, 67%); // <-purple
|
|
16
|
+
@hue-4: hsl( 95, 38%, 62%); // <-green
|
|
17
|
+
|
|
18
|
+
@hue-5: hsl(355, 65%, 65%); // <-red 1
|
|
19
|
+
@hue-5-2: hsl( 5, 48%, 51%); // <-red 2
|
|
20
|
+
|
|
21
|
+
@hue-6: hsl( 29, 54%, 61%); // <-orange 1
|
|
22
|
+
@hue-6-2: hsl( 39, 67%, 69%); // <-orange 2
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
// Base colors -----------------------------------
|
|
26
|
+
@syntax-fg: @mono-1;
|
|
27
|
+
@syntax-bg: hsl(@syntax-hue, @syntax-saturation, @syntax-brightness);
|
|
28
|
+
@syntax-gutter: darken(@syntax-fg, 26%);
|
|
29
|
+
@syntax-guide: fade(@syntax-fg, 15%);
|
|
30
|
+
@syntax-accent: hsl(@syntax-hue, 100%, 66% );
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
.highlight,
|
|
2
|
+
pre.highlight {
|
|
3
|
+
background: #282c34;
|
|
4
|
+
color: #abb2bf;
|
|
5
|
+
}
|
|
6
|
+
.highlight pre {
|
|
7
|
+
background: #282c34;
|
|
8
|
+
}
|
|
9
|
+
.highlight .hll {
|
|
10
|
+
background: #282c34;
|
|
11
|
+
}
|
|
12
|
+
.highlight .c {
|
|
13
|
+
color: #5c6370;
|
|
14
|
+
font-style: italic;
|
|
15
|
+
}
|
|
16
|
+
.highlight .err {
|
|
17
|
+
color: #960050;
|
|
18
|
+
background-color: #1e0010;
|
|
19
|
+
}
|
|
20
|
+
.highlight .k {
|
|
21
|
+
color: #5ba473;
|
|
22
|
+
}
|
|
23
|
+
.highlight .l {
|
|
24
|
+
color: #c8ae9d;
|
|
25
|
+
}
|
|
26
|
+
.highlight .n {
|
|
27
|
+
color: #abb2bf;
|
|
28
|
+
}
|
|
29
|
+
.highlight .o {
|
|
30
|
+
color: #abb2bf;
|
|
31
|
+
}
|
|
32
|
+
.highlight .p {
|
|
33
|
+
color: #abb2bf;
|
|
34
|
+
}
|
|
35
|
+
.highlight .cm {
|
|
36
|
+
color: #5c6370;
|
|
37
|
+
font-style: italic;
|
|
38
|
+
}
|
|
39
|
+
.highlight .cp {
|
|
40
|
+
color: #5c6370;
|
|
41
|
+
font-style: italic;
|
|
42
|
+
}
|
|
43
|
+
.highlight .c1 {
|
|
44
|
+
color: #5c6370;
|
|
45
|
+
font-style: italic;
|
|
46
|
+
}
|
|
47
|
+
.highlight .cs {
|
|
48
|
+
color: #5c6370;
|
|
49
|
+
font-style: italic;
|
|
50
|
+
}
|
|
51
|
+
.highlight .ge {
|
|
52
|
+
font-style: italic;
|
|
53
|
+
}
|
|
54
|
+
.highlight .gs {
|
|
55
|
+
font-weight: 700;
|
|
56
|
+
}
|
|
57
|
+
.highlight .kc {
|
|
58
|
+
color: #5ba473;
|
|
59
|
+
}
|
|
60
|
+
.highlight .kd {
|
|
61
|
+
color: #5ba473;
|
|
62
|
+
}
|
|
63
|
+
.highlight .kn {
|
|
64
|
+
color: #5ba473;
|
|
65
|
+
}
|
|
66
|
+
.highlight .kp {
|
|
67
|
+
color: #5ba473;
|
|
68
|
+
}
|
|
69
|
+
.highlight .kr {
|
|
70
|
+
color: #5ba473;
|
|
71
|
+
}
|
|
72
|
+
.highlight .kt {
|
|
73
|
+
color: #5ba473;
|
|
74
|
+
}
|
|
75
|
+
.highlight .ld {
|
|
76
|
+
color: #c8ae9d;
|
|
77
|
+
}
|
|
78
|
+
.highlight .m {
|
|
79
|
+
color: #d19a66;
|
|
80
|
+
}
|
|
81
|
+
.highlight .s {
|
|
82
|
+
color: #c8ae9d;
|
|
83
|
+
}
|
|
84
|
+
.highlight .na {
|
|
85
|
+
color: #d19a66;
|
|
86
|
+
}
|
|
87
|
+
.highlight .nb {
|
|
88
|
+
color: #e5c07b;
|
|
89
|
+
}
|
|
90
|
+
.highlight .nc {
|
|
91
|
+
color: #e5c07b;
|
|
92
|
+
}
|
|
93
|
+
.highlight .no {
|
|
94
|
+
color: #e5c07b;
|
|
95
|
+
}
|
|
96
|
+
.highlight .nd {
|
|
97
|
+
color: #e5c07b;
|
|
98
|
+
}
|
|
99
|
+
.highlight .ni {
|
|
100
|
+
color: #e5c07b;
|
|
101
|
+
}
|
|
102
|
+
.highlight .ne {
|
|
103
|
+
color: #e5c07b;
|
|
104
|
+
}
|
|
105
|
+
.highlight .nf {
|
|
106
|
+
color: #abb2bf;
|
|
107
|
+
}
|
|
108
|
+
.highlight .nl {
|
|
109
|
+
color: #e5c07b;
|
|
110
|
+
}
|
|
111
|
+
.highlight .nn {
|
|
112
|
+
color: #abb2bf;
|
|
113
|
+
}
|
|
114
|
+
.highlight .nx {
|
|
115
|
+
color: #abb2bf;
|
|
116
|
+
}
|
|
117
|
+
.highlight .py {
|
|
118
|
+
color: #e5c07b;
|
|
119
|
+
}
|
|
120
|
+
.highlight .nt {
|
|
121
|
+
color: #77b181;
|
|
122
|
+
}
|
|
123
|
+
.highlight .nv {
|
|
124
|
+
color: #e5c07b;
|
|
125
|
+
}
|
|
126
|
+
.highlight .ow {
|
|
127
|
+
font-weight: 700;
|
|
128
|
+
}
|
|
129
|
+
.highlight .w {
|
|
130
|
+
color: #f8f8f2;
|
|
131
|
+
}
|
|
132
|
+
.highlight .mf {
|
|
133
|
+
color: #d19a66;
|
|
134
|
+
}
|
|
135
|
+
.highlight .mh {
|
|
136
|
+
color: #d19a66;
|
|
137
|
+
}
|
|
138
|
+
.highlight .mi {
|
|
139
|
+
color: #d19a66;
|
|
140
|
+
}
|
|
141
|
+
.highlight .mo {
|
|
142
|
+
color: #d19a66;
|
|
143
|
+
}
|
|
144
|
+
.highlight .sb {
|
|
145
|
+
color: #c8ae9d;
|
|
146
|
+
}
|
|
147
|
+
.highlight .sc {
|
|
148
|
+
color: #c8ae9d;
|
|
149
|
+
}
|
|
150
|
+
.highlight .sd {
|
|
151
|
+
color: #c8ae9d;
|
|
152
|
+
}
|
|
153
|
+
.highlight .s2 {
|
|
154
|
+
color: #c8ae9d;
|
|
155
|
+
}
|
|
156
|
+
.highlight .se {
|
|
157
|
+
color: #c8ae9d;
|
|
158
|
+
}
|
|
159
|
+
.highlight .sh {
|
|
160
|
+
color: #c8ae9d;
|
|
161
|
+
}
|
|
162
|
+
.highlight .si {
|
|
163
|
+
color: #c8ae9d;
|
|
164
|
+
}
|
|
165
|
+
.highlight .sx {
|
|
166
|
+
color: #c8ae9d;
|
|
167
|
+
}
|
|
168
|
+
.highlight .sr {
|
|
169
|
+
color: #56b6c2;
|
|
170
|
+
}
|
|
171
|
+
.highlight .s1 {
|
|
172
|
+
color: #c8ae9d;
|
|
173
|
+
}
|
|
174
|
+
.highlight .ss {
|
|
175
|
+
color: #56b6c2;
|
|
176
|
+
}
|
|
177
|
+
.highlight .bp {
|
|
178
|
+
color: #e5c07b;
|
|
179
|
+
}
|
|
180
|
+
.highlight .vc {
|
|
181
|
+
color: #e5c07b;
|
|
182
|
+
}
|
|
183
|
+
.highlight .vg {
|
|
184
|
+
color: #e5c07b;
|
|
185
|
+
}
|
|
186
|
+
.highlight .vi {
|
|
187
|
+
color: #77b181;
|
|
188
|
+
}
|
|
189
|
+
.highlight .il {
|
|
190
|
+
color: #d19a66;
|
|
191
|
+
}
|
|
192
|
+
.highlight .gu {
|
|
193
|
+
color: #75715e;
|
|
194
|
+
}
|
|
195
|
+
.highlight .gd {
|
|
196
|
+
color: #f92672;
|
|
197
|
+
}
|
|
198
|
+
.highlight .gi {
|
|
199
|
+
color: #a6e22e;
|
|
200
|
+
}
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
.highlight,
|
|
2
|
+
pre.highlight {
|
|
3
|
+
background: #282c34;
|
|
4
|
+
color: #abb2bf;
|
|
5
|
+
}
|
|
6
|
+
.highlight pre {
|
|
7
|
+
background: #282c34;
|
|
8
|
+
}
|
|
9
|
+
.highlight .hll {
|
|
10
|
+
background: #282c34;
|
|
11
|
+
}
|
|
12
|
+
.highlight .c {
|
|
13
|
+
color: #5c6370;
|
|
14
|
+
font-style: italic;
|
|
15
|
+
}
|
|
16
|
+
.highlight .err {
|
|
17
|
+
color: #960050;
|
|
18
|
+
background-color: #1e0010;
|
|
19
|
+
}
|
|
20
|
+
.highlight .k {
|
|
21
|
+
color: #dd672c;
|
|
22
|
+
}
|
|
23
|
+
.highlight .l {
|
|
24
|
+
color: #c8ae9d;
|
|
25
|
+
}
|
|
26
|
+
.highlight .n {
|
|
27
|
+
color: #abb2bf;
|
|
28
|
+
}
|
|
29
|
+
.highlight .o {
|
|
30
|
+
color: #abb2bf;
|
|
31
|
+
}
|
|
32
|
+
.highlight .p {
|
|
33
|
+
color: #abb2bf;
|
|
34
|
+
}
|
|
35
|
+
.highlight .cm {
|
|
36
|
+
color: #5c6370;
|
|
37
|
+
font-style: italic;
|
|
38
|
+
}
|
|
39
|
+
.highlight .cp {
|
|
40
|
+
color: #5c6370;
|
|
41
|
+
font-style: italic;
|
|
42
|
+
}
|
|
43
|
+
.highlight .c1 {
|
|
44
|
+
color: #5c6370;
|
|
45
|
+
font-style: italic;
|
|
46
|
+
}
|
|
47
|
+
.highlight .cs {
|
|
48
|
+
color: #5c6370;
|
|
49
|
+
font-style: italic;
|
|
50
|
+
}
|
|
51
|
+
.highlight .ge {
|
|
52
|
+
font-style: italic;
|
|
53
|
+
}
|
|
54
|
+
.highlight .gs {
|
|
55
|
+
font-weight: 700;
|
|
56
|
+
}
|
|
57
|
+
.highlight .kc {
|
|
58
|
+
color: #dd672c;
|
|
59
|
+
}
|
|
60
|
+
.highlight .kd {
|
|
61
|
+
color: #dd672c;
|
|
62
|
+
}
|
|
63
|
+
.highlight .kn {
|
|
64
|
+
color: #dd672c;
|
|
65
|
+
}
|
|
66
|
+
.highlight .kp {
|
|
67
|
+
color: #dd672c;
|
|
68
|
+
}
|
|
69
|
+
.highlight .kr {
|
|
70
|
+
color: #dd672c;
|
|
71
|
+
}
|
|
72
|
+
.highlight .kt {
|
|
73
|
+
color: #dd672c;
|
|
74
|
+
}
|
|
75
|
+
.highlight .ld {
|
|
76
|
+
color: #c8ae9d;
|
|
77
|
+
}
|
|
78
|
+
.highlight .m {
|
|
79
|
+
color: #d19a66;
|
|
80
|
+
}
|
|
81
|
+
.highlight .s {
|
|
82
|
+
color: #c8ae9d;
|
|
83
|
+
}
|
|
84
|
+
.highlight .na {
|
|
85
|
+
color: #d19a66;
|
|
86
|
+
}
|
|
87
|
+
.highlight .nb {
|
|
88
|
+
color: #e5c07b;
|
|
89
|
+
}
|
|
90
|
+
.highlight .nc {
|
|
91
|
+
color: #e5c07b;
|
|
92
|
+
}
|
|
93
|
+
.highlight .no {
|
|
94
|
+
color: #e5c07b;
|
|
95
|
+
}
|
|
96
|
+
.highlight .nd {
|
|
97
|
+
color: #e5c07b;
|
|
98
|
+
}
|
|
99
|
+
.highlight .ni {
|
|
100
|
+
color: #e5c07b;
|
|
101
|
+
}
|
|
102
|
+
.highlight .ne {
|
|
103
|
+
color: #e5c07b;
|
|
104
|
+
}
|
|
105
|
+
.highlight .nf {
|
|
106
|
+
color: #abb2bf;
|
|
107
|
+
}
|
|
108
|
+
.highlight .nl {
|
|
109
|
+
color: #e5c07b;
|
|
110
|
+
}
|
|
111
|
+
.highlight .nn {
|
|
112
|
+
color: #abb2bf;
|
|
113
|
+
}
|
|
114
|
+
.highlight .nx {
|
|
115
|
+
color: #abb2bf;
|
|
116
|
+
}
|
|
117
|
+
.highlight .py {
|
|
118
|
+
color: #e5c07b;
|
|
119
|
+
}
|
|
120
|
+
.highlight .nt {
|
|
121
|
+
color: #e06c75;
|
|
122
|
+
}
|
|
123
|
+
.highlight .nv {
|
|
124
|
+
color: #e5c07b;
|
|
125
|
+
}
|
|
126
|
+
.highlight .ow {
|
|
127
|
+
font-weight: 700;
|
|
128
|
+
}
|
|
129
|
+
.highlight .w {
|
|
130
|
+
color: #f8f8f2;
|
|
131
|
+
}
|
|
132
|
+
.highlight .mf {
|
|
133
|
+
color: #d19a66;
|
|
134
|
+
}
|
|
135
|
+
.highlight .mh {
|
|
136
|
+
color: #d19a66;
|
|
137
|
+
}
|
|
138
|
+
.highlight .mi {
|
|
139
|
+
color: #d19a66;
|
|
140
|
+
}
|
|
141
|
+
.highlight .mo {
|
|
142
|
+
color: #d19a66;
|
|
143
|
+
}
|
|
144
|
+
.highlight .sb {
|
|
145
|
+
color: #c8ae9d;
|
|
146
|
+
}
|
|
147
|
+
.highlight .sc {
|
|
148
|
+
color: #c8ae9d;
|
|
149
|
+
}
|
|
150
|
+
.highlight .sd {
|
|
151
|
+
color: #c8ae9d;
|
|
152
|
+
}
|
|
153
|
+
.highlight .s2 {
|
|
154
|
+
color: #c8ae9d;
|
|
155
|
+
}
|
|
156
|
+
.highlight .se {
|
|
157
|
+
color: #c8ae9d;
|
|
158
|
+
}
|
|
159
|
+
.highlight .sh {
|
|
160
|
+
color: #c8ae9d;
|
|
161
|
+
}
|
|
162
|
+
.highlight .si {
|
|
163
|
+
color: #c8ae9d;
|
|
164
|
+
}
|
|
165
|
+
.highlight .sx {
|
|
166
|
+
color: #c8ae9d;
|
|
167
|
+
}
|
|
168
|
+
.highlight .sr {
|
|
169
|
+
color: #56b6c2;
|
|
170
|
+
}
|
|
171
|
+
.highlight .s1 {
|
|
172
|
+
color: #c8ae9d;
|
|
173
|
+
}
|
|
174
|
+
.highlight .ss {
|
|
175
|
+
color: #56b6c2;
|
|
176
|
+
}
|
|
177
|
+
.highlight .bp {
|
|
178
|
+
color: #e5c07b;
|
|
179
|
+
}
|
|
180
|
+
.highlight .vc {
|
|
181
|
+
color: #e5c07b;
|
|
182
|
+
}
|
|
183
|
+
.highlight .vg {
|
|
184
|
+
color: #e5c07b;
|
|
185
|
+
}
|
|
186
|
+
.highlight .vi {
|
|
187
|
+
color: #e06c75;
|
|
188
|
+
}
|
|
189
|
+
.highlight .il {
|
|
190
|
+
color: #d19a66;
|
|
191
|
+
}
|
|
192
|
+
.highlight .gu {
|
|
193
|
+
color: #75715e;
|
|
194
|
+
}
|
|
195
|
+
.highlight .gd {
|
|
196
|
+
color: #f92672;
|
|
197
|
+
}
|
|
198
|
+
.highlight .gi {
|
|
199
|
+
color: #a6e22e;
|
|
200
|
+
}
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
.highlight,
|
|
2
|
+
pre.highlight {
|
|
3
|
+
background: #31343f;
|
|
4
|
+
color: #dee2f7;
|
|
5
|
+
}
|
|
6
|
+
.highlight pre {
|
|
7
|
+
background: #31343f;
|
|
8
|
+
}
|
|
9
|
+
.highlight .hll {
|
|
10
|
+
background: #31343f;
|
|
11
|
+
}
|
|
12
|
+
.highlight .c {
|
|
13
|
+
color: #63677e;
|
|
14
|
+
font-style: italic;
|
|
15
|
+
}
|
|
16
|
+
.highlight .err {
|
|
17
|
+
color: #960050;
|
|
18
|
+
background-color: #1e0010;
|
|
19
|
+
}
|
|
20
|
+
.highlight .k {
|
|
21
|
+
color: #e19ef5;
|
|
22
|
+
}
|
|
23
|
+
.highlight .l {
|
|
24
|
+
color: #a3eea0;
|
|
25
|
+
}
|
|
26
|
+
.highlight .n {
|
|
27
|
+
color: #dee2f7;
|
|
28
|
+
}
|
|
29
|
+
.highlight .o {
|
|
30
|
+
color: #dee2f7;
|
|
31
|
+
}
|
|
32
|
+
.highlight .p {
|
|
33
|
+
color: #dee2f7;
|
|
34
|
+
}
|
|
35
|
+
.highlight .cm {
|
|
36
|
+
color: #63677e;
|
|
37
|
+
font-style: italic;
|
|
38
|
+
}
|
|
39
|
+
.highlight .cp {
|
|
40
|
+
color: #63677e;
|
|
41
|
+
font-style: italic;
|
|
42
|
+
}
|
|
43
|
+
.highlight .c1 {
|
|
44
|
+
color: #63677e;
|
|
45
|
+
font-style: italic;
|
|
46
|
+
}
|
|
47
|
+
.highlight .cs {
|
|
48
|
+
color: #63677e;
|
|
49
|
+
font-style: italic;
|
|
50
|
+
}
|
|
51
|
+
.highlight .ge {
|
|
52
|
+
font-style: italic;
|
|
53
|
+
}
|
|
54
|
+
.highlight .gs {
|
|
55
|
+
font-weight: 700;
|
|
56
|
+
}
|
|
57
|
+
.highlight .kc {
|
|
58
|
+
color: #e19ef5;
|
|
59
|
+
}
|
|
60
|
+
.highlight .kd {
|
|
61
|
+
color: #e19ef5;
|
|
62
|
+
}
|
|
63
|
+
.highlight .kn {
|
|
64
|
+
color: #e19ef5;
|
|
65
|
+
}
|
|
66
|
+
.highlight .kp {
|
|
67
|
+
color: #e19ef5;
|
|
68
|
+
}
|
|
69
|
+
.highlight .kr {
|
|
70
|
+
color: #e19ef5;
|
|
71
|
+
}
|
|
72
|
+
.highlight .kt {
|
|
73
|
+
color: #e19ef5;
|
|
74
|
+
}
|
|
75
|
+
.highlight .ld {
|
|
76
|
+
color: #a3eea0;
|
|
77
|
+
}
|
|
78
|
+
.highlight .m {
|
|
79
|
+
color: #eddc96;
|
|
80
|
+
}
|
|
81
|
+
.highlight .s {
|
|
82
|
+
color: #a3eea0;
|
|
83
|
+
}
|
|
84
|
+
.highlight .na {
|
|
85
|
+
color: #eddc96;
|
|
86
|
+
}
|
|
87
|
+
.highlight .nb {
|
|
88
|
+
color: #fdce68;
|
|
89
|
+
}
|
|
90
|
+
.highlight .nc {
|
|
91
|
+
color: #fdce68;
|
|
92
|
+
}
|
|
93
|
+
.highlight .no {
|
|
94
|
+
color: #fdce68;
|
|
95
|
+
}
|
|
96
|
+
.highlight .nd {
|
|
97
|
+
color: #fdce68;
|
|
98
|
+
}
|
|
99
|
+
.highlight .ni {
|
|
100
|
+
color: #fdce68;
|
|
101
|
+
}
|
|
102
|
+
.highlight .ne {
|
|
103
|
+
color: #fdce68;
|
|
104
|
+
}
|
|
105
|
+
.highlight .nf {
|
|
106
|
+
color: #dee2f7;
|
|
107
|
+
}
|
|
108
|
+
.highlight .nl {
|
|
109
|
+
color: #fdce68;
|
|
110
|
+
}
|
|
111
|
+
.highlight .nn {
|
|
112
|
+
color: #dee2f7;
|
|
113
|
+
}
|
|
114
|
+
.highlight .nx {
|
|
115
|
+
color: #dee2f7;
|
|
116
|
+
}
|
|
117
|
+
.highlight .py {
|
|
118
|
+
color: #fdce68;
|
|
119
|
+
}
|
|
120
|
+
.highlight .nt {
|
|
121
|
+
color: #f9867b;
|
|
122
|
+
}
|
|
123
|
+
.highlight .nv {
|
|
124
|
+
color: #fdce68;
|
|
125
|
+
}
|
|
126
|
+
.highlight .ow {
|
|
127
|
+
font-weight: 700;
|
|
128
|
+
}
|
|
129
|
+
.highlight .w {
|
|
130
|
+
color: #f8f8f2;
|
|
131
|
+
}
|
|
132
|
+
.highlight .mf {
|
|
133
|
+
color: #eddc96;
|
|
134
|
+
}
|
|
135
|
+
.highlight .mh {
|
|
136
|
+
color: #eddc96;
|
|
137
|
+
}
|
|
138
|
+
.highlight .mi {
|
|
139
|
+
color: #eddc96;
|
|
140
|
+
}
|
|
141
|
+
.highlight .mo {
|
|
142
|
+
color: #eddc96;
|
|
143
|
+
}
|
|
144
|
+
.highlight .sb {
|
|
145
|
+
color: #a3eea0;
|
|
146
|
+
}
|
|
147
|
+
.highlight .sc {
|
|
148
|
+
color: #a3eea0;
|
|
149
|
+
}
|
|
150
|
+
.highlight .sd {
|
|
151
|
+
color: #a3eea0;
|
|
152
|
+
}
|
|
153
|
+
.highlight .s2 {
|
|
154
|
+
color: #a3eea0;
|
|
155
|
+
}
|
|
156
|
+
.highlight .se {
|
|
157
|
+
color: #a3eea0;
|
|
158
|
+
}
|
|
159
|
+
.highlight .sh {
|
|
160
|
+
color: #a3eea0;
|
|
161
|
+
}
|
|
162
|
+
.highlight .si {
|
|
163
|
+
color: #a3eea0;
|
|
164
|
+
}
|
|
165
|
+
.highlight .sx {
|
|
166
|
+
color: #a3eea0;
|
|
167
|
+
}
|
|
168
|
+
.highlight .sr {
|
|
169
|
+
color: #7be2f9;
|
|
170
|
+
}
|
|
171
|
+
.highlight .s1 {
|
|
172
|
+
color: #a3eea0;
|
|
173
|
+
}
|
|
174
|
+
.highlight .ss {
|
|
175
|
+
color: #7be2f9;
|
|
176
|
+
}
|
|
177
|
+
.highlight .bp {
|
|
178
|
+
color: #fdce68;
|
|
179
|
+
}
|
|
180
|
+
.highlight .vc {
|
|
181
|
+
color: #fdce68;
|
|
182
|
+
}
|
|
183
|
+
.highlight .vg {
|
|
184
|
+
color: #fdce68;
|
|
185
|
+
}
|
|
186
|
+
.highlight .vi {
|
|
187
|
+
color: #f9867b;
|
|
188
|
+
}
|
|
189
|
+
.highlight .il {
|
|
190
|
+
color: #eddc96;
|
|
191
|
+
}
|
|
192
|
+
.highlight .gu {
|
|
193
|
+
color: #75715e;
|
|
194
|
+
}
|
|
195
|
+
.highlight .gd {
|
|
196
|
+
color: #f92672;
|
|
197
|
+
}
|
|
198
|
+
.highlight .gi {
|
|
199
|
+
color: #a6e22e;
|
|
200
|
+
}
|