jekyll-theme-hyde-dark 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df629e735a3cd7287c54ed0b0ff1ba33717f71271473dbde01256824c8df4c47
4
- data.tar.gz: 81d532055f04a49fae208f72e812fd489da3c89c39d354f1601d0b18a6bed865
3
+ metadata.gz: 4e361f7794868aa2bb169a53cf649288b7135fb50bc631293a42038e54498230
4
+ data.tar.gz: 4683da0e4c8c8b92c034f1c7067632034828d9db98f76d3af5272061fb6af921
5
5
  SHA512:
6
- metadata.gz: 39cf26ddcbae36922e89b40480db1ea37a9b437acb0821256c402a75e73123b1afd03877c5a782cb4ec88b3aed22eb5ea18e9333980331649939091419ef5a32
7
- data.tar.gz: 647458f13dbd777525edb9212135f1610c7d480bf68db42d2865af5f5d85354b7d2c72119b9906a744f1e0d23979306ba62a78fc201f0f3af51eea8e29835892
6
+ metadata.gz: 577e7d12b70ffaac9f6c4ce103381041e30a95c25474c7eec4b00c4150ded297c14a0ebfd6044aa29c5eb632db9f66259f552c2bb1914b9641e753fb5b807f04
7
+ data.tar.gz: e21f25e4de7fe498fa01c29f7f6e013acb1e748a20dcfbed618405218198cf1803ad180298829b4398efe7f1c69faf97ba07d9d26e2b70a364c9b869a163198a
@@ -0,0 +1,253 @@
1
+ /*
2
+ * __ __
3
+ * /\ \ /\ \
4
+ * \ \ \___ __ __ \_\ \ __
5
+ * \ \ _ `\/\ \/\ \ /'_` \ /'__`\
6
+ * \ \ \ \ \ \ \_\ \/\ \_\ \/\ __/
7
+ * \ \_\ \_\/`____ \ \___,_\ \____\
8
+ * \/_/\/_/`/___/> \/__,_ /\/____/
9
+ * /\___/
10
+ * \/__/
11
+ *
12
+ * Designed, built, and released under MIT license by @mdo. Learn more at
13
+ * https://github.com/poole/hyde.
14
+ */
15
+
16
+ /*
17
+ * Contents
18
+ *
19
+ * Global resets
20
+ * Sidebar
21
+ * Container
22
+ * Reverse layout
23
+ * Themes
24
+ */
25
+
26
+ /*
27
+ * Global resets
28
+ *
29
+ * Update the foundational and global aspects of the page.
30
+ */
31
+
32
+ html {
33
+ font-family: 'PT Sans', Helvetica, Arial, sans-serif;
34
+ }
35
+ @media (min-width: 48em) {
36
+ html {
37
+ font-size: 16px;
38
+ }
39
+ }
40
+ @media (min-width: 58em) {
41
+ html {
42
+ font-size: 20px;
43
+ }
44
+ }
45
+
46
+ /*
47
+ * Sidebar
48
+ *
49
+ * Flexible banner for housing site name, intro, and "footer" content. Starts
50
+ * out above content in mobile and later moves to the side with wider viewports.
51
+ */
52
+
53
+ .sidebar {
54
+ text-align: center;
55
+ padding: 2rem 1rem;
56
+ color: rgba(255, 255, 255, 0.5);
57
+ background-color: #202020;
58
+ overflow: auto;
59
+ -ms-overflow-style: none;
60
+ border-right: 1px solid #383838;
61
+ text-align: left;
62
+ transition: 0.3s ease transform;
63
+ transform: translateX(-100%);
64
+ position: fixed;
65
+ top: 0;
66
+ left: 0;
67
+ bottom: 0;
68
+ max-width: 100%;
69
+ }
70
+
71
+ .sidebar.show {
72
+ transform: translateX(0%);
73
+ }
74
+
75
+ #nav-handler {
76
+ display: block;
77
+ position: fixed;
78
+ top: 20px;
79
+ right: 20px;
80
+ background-color: #38250d;
81
+ padding: 0.2rem 0.6rem;
82
+ border-radius: 0.3rem;
83
+ z-index: 100;
84
+ }
85
+
86
+ @media (min-width: 48em) {
87
+ .sidebar {
88
+ width: 18rem;
89
+ transform: translateX(0%);
90
+ }
91
+
92
+ #nav-handler {
93
+ display: none;
94
+ }
95
+ }
96
+
97
+ .sidebar::-webkit-scrollbar {
98
+ width: 0px;
99
+ }
100
+
101
+ /* Sidebar links */
102
+ .sidebar a {
103
+ color: #fff;
104
+ }
105
+
106
+ /* About section */
107
+ .sidebar-about h1 {
108
+ color: #fff;
109
+ margin-top: 0;
110
+ font-family: 'Abril Fatface', serif;
111
+ font-size: 2.25rem;
112
+ }
113
+
114
+ /* Sidebar nav */
115
+ .sidebar-nav {
116
+ margin-bottom: 1rem;
117
+ }
118
+ .sidebar-nav-item {
119
+ display: block;
120
+ line-height: 1.75;
121
+ text-overflow: ellipsis;
122
+ white-space: nowrap;
123
+ max-width: 100%;
124
+ overflow: hidden;
125
+ }
126
+ a.sidebar-nav-item:hover,
127
+ a.sidebar-nav-item:focus {
128
+ text-decoration: underline;
129
+ }
130
+ .sidebar-nav-item.active {
131
+ font-weight: bold;
132
+ }
133
+
134
+ /* Sticky sidebar
135
+ *
136
+ * Add the `sidebar-sticky` class to the sidebar's container to affix it the
137
+ * contents to the bottom of the sidebar in tablets and up.
138
+ */
139
+
140
+ @media (min-width: 48em) {
141
+ .sidebar-sticky {
142
+ position: absolute;
143
+ right: 1rem;
144
+ bottom: 1rem;
145
+ left: 1rem;
146
+ }
147
+ }
148
+
149
+ /* Container
150
+ *
151
+ * Align the contents of the site above the proper threshold with some margin-fu
152
+ * with a 25%-wide `.sidebar`.
153
+ */
154
+
155
+ .content {
156
+ padding-top: 4rem;
157
+ padding-bottom: 4rem;
158
+ }
159
+
160
+ @media (min-width: 48em) {
161
+ .content {
162
+ max-width: 38rem;
163
+ margin-left: 20rem;
164
+ margin-right: 2rem;
165
+ }
166
+ }
167
+
168
+ @media (min-width: 64em) {
169
+ .content {
170
+ margin-left: 22rem;
171
+ margin-right: 4rem;
172
+ }
173
+ }
174
+
175
+ /*
176
+ * Reverse layout
177
+ *
178
+ * Flip the orientation of the page by placing the `.sidebar` on the right.
179
+ */
180
+
181
+ @media (min-width: 48em) {
182
+ .layout-reverse .sidebar {
183
+ left: auto;
184
+ right: 0;
185
+ }
186
+ .layout-reverse .content {
187
+ margin-left: 2rem;
188
+ margin-right: 20rem;
189
+ }
190
+ }
191
+
192
+ @media (min-width: 64em) {
193
+ .layout-reverse .content {
194
+ margin-left: 4rem;
195
+ margin-right: 22rem;
196
+ }
197
+ }
198
+
199
+ /*
200
+ * Themes
201
+ *
202
+ * As of v1.1, Hyde includes optional themes to color the sidebar and links
203
+ * within blog posts. To use, add the class of your choosing to the `body`.
204
+ */
205
+
206
+ /* Dark */
207
+
208
+ .theme-base-dark {
209
+ background-color: #141414;
210
+ color: #cfcdcd;
211
+ }
212
+
213
+ .theme-base-dark .sidebar {
214
+ background-color: #141414;
215
+ }
216
+
217
+ .theme-base-dark .highlight pre {
218
+ background-color: #232121;
219
+ border-radius: 0.4rem;
220
+ }
221
+
222
+ .theme-base-dark code.highlighter-rouge {
223
+ background-color: #f9f9f90f;
224
+ color: red;
225
+ }
226
+
227
+ .theme-base-dark strong {
228
+ color: #f4bf75;
229
+ }
230
+
231
+ .theme-base-dark .content a,
232
+ .theme-base-dark .related-posts li a:hover {
233
+ color: #fff;
234
+ }
235
+
236
+ .theme-base-dark h1,
237
+ .theme-base-dark h2,
238
+ .theme-base-dark h3,
239
+ .theme-base-dark h4,
240
+ .theme-base-dark h5,
241
+ .theme-base-dark h6 {
242
+ color: #f4bf75;
243
+ }
244
+
245
+ .theme-base-dark tbody tr:nth-child(odd) td,
246
+ .theme-base-dark tbody tr:nth-child(odd) th {
247
+ background-color: #272727af;
248
+ }
249
+
250
+ .theme-base-dark .message {
251
+ background-color: #252525;
252
+ color: #c4c4c4;
253
+ }
@@ -0,0 +1,430 @@
1
+ /*
2
+ * ___
3
+ * /\_ \
4
+ * _____ ___ ___\//\ \ __
5
+ * /\ '__`\ / __`\ / __`\\ \ \ /'__`\
6
+ * \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\ __/
7
+ * \ \ ,__/\ \____/\ \____//\____\ \____\
8
+ * \ \ \/ \/___/ \/___/ \/____/\/____/
9
+ * \ \_\
10
+ * \/_/
11
+ *
12
+ * Designed, built, and released under MIT license by @mdo. Learn more at
13
+ * https://github.com/poole/poole.
14
+ */
15
+
16
+ /*
17
+ * Contents
18
+ *
19
+ * Body resets
20
+ * Custom type
21
+ * Messages
22
+ * Container
23
+ * Masthead
24
+ * Posts and pages
25
+ * Pagination
26
+ * Reverse layout
27
+ * Themes
28
+ */
29
+
30
+ /*
31
+ * Body resets
32
+ *
33
+ * Update the foundational and global aspects of the page.
34
+ */
35
+
36
+ * {
37
+ -webkit-box-sizing: border-box;
38
+ -moz-box-sizing: border-box;
39
+ box-sizing: border-box;
40
+ }
41
+
42
+ html,
43
+ body {
44
+ margin: 0;
45
+ padding: 0;
46
+ }
47
+
48
+ html {
49
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
50
+ font-size: 16px;
51
+ line-height: 1.5;
52
+ }
53
+ @media (min-width: 38em) {
54
+ html {
55
+ font-size: 20px;
56
+ }
57
+ }
58
+
59
+ body {
60
+ color: #515151;
61
+ background-color: #fff;
62
+ -webkit-text-size-adjust: 100%;
63
+ -ms-text-size-adjust: 100%;
64
+ }
65
+
66
+ /* No `:visited` state is required by default (browsers will use `a`) */
67
+ a {
68
+ color: #268bd2;
69
+ text-decoration: none;
70
+ }
71
+ a strong {
72
+ color: inherit;
73
+ }
74
+ /* `:focus` is linked to `:hover` for basic accessibility */
75
+ a:hover,
76
+ a:focus {
77
+ text-decoration: underline;
78
+ }
79
+
80
+ /* Headings */
81
+ h1,
82
+ h2,
83
+ h3,
84
+ h4,
85
+ h5,
86
+ h6 {
87
+ margin-bottom: 0.5rem;
88
+ font-weight: bold;
89
+ line-height: 1.25;
90
+ color: #313131;
91
+ text-rendering: optimizeLegibility;
92
+ }
93
+ h1 {
94
+ font-size: 2rem;
95
+ }
96
+ h2 {
97
+ margin-top: 1rem;
98
+ font-size: 1.5rem;
99
+ }
100
+ h3 {
101
+ margin-top: 1.5rem;
102
+ font-size: 1.25rem;
103
+ }
104
+ h4,
105
+ h5,
106
+ h6 {
107
+ margin-top: 1rem;
108
+ font-size: 1rem;
109
+ }
110
+
111
+ /* Body text */
112
+ p {
113
+ margin-top: 0;
114
+ margin-bottom: 1rem;
115
+ }
116
+
117
+ strong {
118
+ color: #303030;
119
+ }
120
+
121
+ /* Lists */
122
+ ul,
123
+ ol,
124
+ dl {
125
+ margin-top: 0;
126
+ margin-bottom: 1rem;
127
+ }
128
+
129
+ dt {
130
+ font-weight: bold;
131
+ }
132
+ dd {
133
+ margin-bottom: 0.5rem;
134
+ }
135
+
136
+ /* Misc */
137
+ hr {
138
+ position: relative;
139
+ margin: 1.5rem 0;
140
+ border: 0;
141
+ border-top: 1px solid #eee;
142
+ border-bottom: 1px solid #fff;
143
+ }
144
+
145
+ abbr {
146
+ font-size: 85%;
147
+ font-weight: bold;
148
+ color: #555;
149
+ text-transform: uppercase;
150
+ }
151
+ abbr[title] {
152
+ cursor: help;
153
+ border-bottom: 1px dotted #e5e5e5;
154
+ }
155
+
156
+ /* Code */
157
+ code,
158
+ pre {
159
+ font-family: 'Fira Mono', monospace;
160
+ }
161
+ code {
162
+ padding: 0.25em 0.5em;
163
+ font-size: 85%;
164
+ color: #bf616a;
165
+ background-color: #f9f9f9;
166
+ border-radius: 3px;
167
+ }
168
+
169
+ pre {
170
+ display: block;
171
+ margin-top: 0;
172
+ margin-bottom: 1rem;
173
+ padding: 1rem;
174
+ font-size: 0.8rem;
175
+ line-height: 1.4;
176
+ white-space: pre;
177
+ background-color: #f9f9f9;
178
+ overflow: auto;
179
+ }
180
+
181
+ pre code {
182
+ padding: 0;
183
+ font-size: 100%;
184
+ color: inherit;
185
+ background-color: transparent;
186
+ }
187
+
188
+ /* Pygments via Jekyll */
189
+ .highlight {
190
+ margin-bottom: 1rem;
191
+ border-radius: 4px;
192
+ }
193
+ .highlight pre {
194
+ margin-bottom: 0;
195
+ }
196
+
197
+ /* Gist via GitHub Pages */
198
+ .gist .gist-file {
199
+ font-family: Menlo, Monaco, 'Courier New', monospace !important;
200
+ }
201
+ .gist .markdown-body {
202
+ padding: 15px;
203
+ }
204
+ .gist pre {
205
+ padding: 0;
206
+ background-color: transparent;
207
+ }
208
+ .gist .gist-file .gist-data {
209
+ font-size: 0.8rem !important;
210
+ line-height: 1.4;
211
+ }
212
+ .gist code {
213
+ padding: 0;
214
+ color: inherit;
215
+ background-color: transparent;
216
+ border-radius: 0;
217
+ }
218
+
219
+ /* Quotes */
220
+ blockquote {
221
+ padding: 0.5rem 1rem;
222
+ margin: 0.8rem 0;
223
+ color: #7a7a7a;
224
+ border-left: 0.25rem solid #e5e5e5;
225
+ }
226
+ blockquote p:last-child {
227
+ margin-bottom: 0;
228
+ }
229
+ @media (min-width: 30em) {
230
+ blockquote {
231
+ padding-right: 5rem;
232
+ padding-left: 1.25rem;
233
+ }
234
+ }
235
+
236
+ img {
237
+ display: block;
238
+ max-width: 100%;
239
+ margin: 0 0 1rem;
240
+ border-radius: 5px;
241
+ }
242
+
243
+ /* Tables */
244
+ table {
245
+ margin-bottom: 1rem;
246
+ width: 100%;
247
+ border: 1px solid #e5e5e5;
248
+ border-collapse: collapse;
249
+ }
250
+ td,
251
+ th {
252
+ padding: 0.25rem 0.5rem;
253
+ border: 1px solid #e5e5e5;
254
+ }
255
+ tbody tr:nth-child(odd) td,
256
+ tbody tr:nth-child(odd) th {
257
+ background-color: #f9f9f9;
258
+ }
259
+
260
+ /*
261
+ * Custom type
262
+ *
263
+ * Extend paragraphs with `.lead` for larger introductory text.
264
+ */
265
+
266
+ .lead {
267
+ font-size: 1.25rem;
268
+ font-weight: 300;
269
+ }
270
+
271
+ /*
272
+ * Messages
273
+ *
274
+ * Show alert messages to users. You may add it to single elements like a `<p>`,
275
+ * or to a parent if there are multiple elements to show.
276
+ */
277
+
278
+ .message {
279
+ margin-bottom: 1rem;
280
+ padding: 1rem;
281
+ color: #717171;
282
+ background-color: #f9f9f9;
283
+ }
284
+
285
+ /*
286
+ * Container
287
+ *
288
+ * Center the page content.
289
+ */
290
+
291
+ .container {
292
+ max-width: 38rem;
293
+ padding-left: 1rem;
294
+ padding-right: 1rem;
295
+ margin-left: auto;
296
+ margin-right: auto;
297
+ }
298
+
299
+ /*
300
+ * Masthead
301
+ *
302
+ * Super small header above the content for site name and short description.
303
+ */
304
+
305
+ .masthead {
306
+ padding-top: 1rem;
307
+ padding-bottom: 1rem;
308
+ margin-bottom: 3rem;
309
+ }
310
+ .masthead-title {
311
+ margin-top: 0;
312
+ margin-bottom: 0;
313
+ color: #505050;
314
+ }
315
+ .masthead-title a {
316
+ color: #505050;
317
+ }
318
+ .masthead-title small {
319
+ font-size: 75%;
320
+ font-weight: 400;
321
+ color: #c0c0c0;
322
+ letter-spacing: 0;
323
+ }
324
+
325
+ /*
326
+ * Posts and pages
327
+ *
328
+ * Each post is wrapped in `.post` and is used on default and post layouts. Each
329
+ * page is wrapped in `.page` and is only used on the page layout.
330
+ */
331
+
332
+ .page,
333
+ .post {
334
+ margin-bottom: 4em;
335
+ }
336
+
337
+ /* Blog post or page title */
338
+ .page-title,
339
+ .post-title,
340
+ .post-title a {
341
+ color: #303030;
342
+ }
343
+ .page-title,
344
+ .post-title {
345
+ margin-top: 0;
346
+ }
347
+
348
+ /* Meta data line below post title */
349
+ .post-date {
350
+ display: block;
351
+ margin-top: -0.5rem;
352
+ margin-bottom: 1rem;
353
+ color: #9a9a9a;
354
+ }
355
+
356
+ /* Related posts */
357
+ .related {
358
+ padding-top: 2rem;
359
+ padding-bottom: 2rem;
360
+ border-top: 1px solid #eee;
361
+ }
362
+ .related-posts {
363
+ padding-left: 0;
364
+ list-style: none;
365
+ }
366
+ .related-posts h3 {
367
+ margin-top: 0;
368
+ }
369
+ .related-posts li small {
370
+ font-size: 75%;
371
+ color: #999;
372
+ }
373
+ .related-posts li a:hover {
374
+ color: #268bd2;
375
+ text-decoration: none;
376
+ }
377
+ .related-posts li a:hover small {
378
+ color: inherit;
379
+ }
380
+
381
+ /*
382
+ * Pagination
383
+ *
384
+ * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when
385
+ * there are no more previous or next posts to show.
386
+ */
387
+
388
+ .pagination {
389
+ overflow: hidden; /* clearfix */
390
+ margin-left: -1rem;
391
+ margin-right: -1rem;
392
+ font-family: 'PT Sans', Helvetica, Arial, sans-serif;
393
+ color: #ccc;
394
+ text-align: center;
395
+ }
396
+
397
+ /* Pagination items can be `span`s or `a`s */
398
+ .pagination-item {
399
+ display: block;
400
+ padding: 1rem;
401
+ border: 1px solid #eee;
402
+ }
403
+ .pagination-item:first-child {
404
+ margin-bottom: -1px;
405
+ }
406
+
407
+ /* Only provide a hover state for linked pagination items */
408
+ a.pagination-item:hover {
409
+ background-color: #f5f5f5;
410
+ }
411
+
412
+ @media (min-width: 30em) {
413
+ .pagination {
414
+ margin: 3rem 0;
415
+ }
416
+ .pagination-item {
417
+ float: left;
418
+ width: 50%;
419
+ }
420
+ .pagination-item:first-child {
421
+ margin-bottom: 0;
422
+ border-top-left-radius: 4px;
423
+ border-bottom-left-radius: 4px;
424
+ }
425
+ .pagination-item:last-child {
426
+ margin-left: -1px;
427
+ border-top-right-radius: 4px;
428
+ border-bottom-right-radius: 4px;
429
+ }
430
+ }
@@ -0,0 +1,196 @@
1
+ .highlight .hll {
2
+ background-color: #ffc;
3
+ }
4
+ .highlight .c {
5
+ color: #999;
6
+ } /* Comment */
7
+ .highlight .err {
8
+ color: #a00;
9
+ background-color: #faa;
10
+ } /* Error */
11
+ .highlight .k {
12
+ color: #069;
13
+ } /* Keyword */
14
+ .highlight .o {
15
+ color: #999;
16
+ } /* Operator */
17
+ .highlight .cm {
18
+ color: #09f;
19
+ font-style: italic;
20
+ } /* Comment.Multiline */
21
+ .highlight .cp {
22
+ color: #099;
23
+ } /* Comment.Preproc */
24
+ .highlight .c1 {
25
+ color: slategray;
26
+ } /* Comment.Single */
27
+ .highlight .cs {
28
+ color: #999;
29
+ } /* Comment.Special */
30
+ .highlight .gd {
31
+ background-color: #fcc;
32
+ border: 1px solid #c00;
33
+ } /* Generic.Deleted */
34
+ .highlight .ge {
35
+ font-style: italic;
36
+ } /* Generic.Emph */
37
+ .highlight .gr {
38
+ color: #f00;
39
+ } /* Generic.Error */
40
+ .highlight .gh {
41
+ color: #030;
42
+ } /* Generic.Heading */
43
+ .highlight .gi {
44
+ background-color: #cfc;
45
+ border: 1px solid #0c0;
46
+ } /* Generic.Inserted */
47
+ .highlight .go {
48
+ color: #aaa;
49
+ } /* Generic.Output */
50
+ .highlight .gp {
51
+ color: #009;
52
+ } /* Generic.Prompt */
53
+ /* .highlight .gs {
54
+ } Generic.Strong */
55
+ .highlight .gu {
56
+ color: #030;
57
+ } /* Generic.Subheading */
58
+ .highlight .gt {
59
+ color: #9c6;
60
+ } /* Generic.Traceback */
61
+ .highlight .kc {
62
+ color: #069;
63
+ } /* Keyword.Constant */
64
+ .highlight .kd {
65
+ color: #069;
66
+ } /* Keyword.Declaration */
67
+ .highlight .kn {
68
+ color: #069;
69
+ } /* Keyword.Namespace */
70
+ .highlight .kp {
71
+ color: #069;
72
+ } /* Keyword.Pseudo */
73
+ .highlight .kr {
74
+ color: #069;
75
+ } /* Keyword.Reserved */
76
+ .highlight .kt {
77
+ color: #078;
78
+ } /* Keyword.Type */
79
+ .highlight .m {
80
+ color: #f60;
81
+ } /* Literal.Number */
82
+ .highlight .s {
83
+ color: #d44950;
84
+ } /* Literal.String */
85
+ .highlight .na {
86
+ color: #4f9fcf;
87
+ } /* Name.Attribute */
88
+ .highlight .nb {
89
+ color: #366;
90
+ } /* Name.Builtin */
91
+ .highlight .nc {
92
+ color: #0a8;
93
+ } /* Name.Class */
94
+ .highlight .no {
95
+ color: #360;
96
+ } /* Name.Constant */
97
+ .highlight .nd {
98
+ color: #99f;
99
+ } /* Name.Decorator */
100
+ .highlight .ni {
101
+ color: #999;
102
+ } /* Name.Entity */
103
+ .highlight .ne {
104
+ color: #c00;
105
+ } /* Name.Exception */
106
+ .highlight .nf {
107
+ color: #c0f;
108
+ } /* Name.Function */
109
+ .highlight .nl {
110
+ color: #99f;
111
+ } /* Name.Label */
112
+ .highlight .nx {
113
+ color: #ccc;
114
+ } /* Javascript label */
115
+ .highlight .nn {
116
+ color: #0cf;
117
+ } /* Name.Namespace */
118
+ .highlight .nt {
119
+ color: #2f6f9f;
120
+ } /* Name.Tag */
121
+ .highlight .nv {
122
+ color: #066;
123
+ } /* Name.Variable */
124
+ .highlight .ow {
125
+ color: #000;
126
+ } /* Operator.Word */
127
+ .highlight .w {
128
+ color: #bbb;
129
+ } /* Text.Whitespace */
130
+ .highlight .mf {
131
+ color: #f60;
132
+ } /* Literal.Number.Float */
133
+ .highlight .mh {
134
+ color: #f60;
135
+ } /* Literal.Number.Hex */
136
+ .highlight .mi {
137
+ color: #f60;
138
+ } /* Literal.Number.Integer */
139
+ .highlight .mo {
140
+ color: #f60;
141
+ } /* Literal.Number.Oct */
142
+ .highlight .sb {
143
+ color: #c30;
144
+ } /* Literal.String.Backtick */
145
+ .highlight .sc {
146
+ color: #c30;
147
+ } /* Literal.String.Char */
148
+ .highlight .sd {
149
+ color: #c30;
150
+ font-style: italic;
151
+ } /* Literal.String.Doc */
152
+ .highlight .s2 {
153
+ color: #c30;
154
+ } /* Literal.String.Double */
155
+ .highlight .se {
156
+ color: #c30;
157
+ } /* Literal.String.Escape */
158
+ .highlight .sh {
159
+ color: #c30;
160
+ } /* Literal.String.Heredoc */
161
+ .highlight .si {
162
+ color: #a00;
163
+ } /* Literal.String.Interpol */
164
+ .highlight .sx {
165
+ color: #c30;
166
+ } /* Literal.String.Other */
167
+ .highlight .sr {
168
+ color: #3aa;
169
+ } /* Literal.String.Regex */
170
+ .highlight .s1 {
171
+ color: #c30;
172
+ } /* Literal.String.Single */
173
+ .highlight .ss {
174
+ color: #fc3;
175
+ } /* Literal.String.Symbol */
176
+ .highlight .bp {
177
+ color: #366;
178
+ } /* Name.Builtin.Pseudo */
179
+ .highlight .vc {
180
+ color: #033;
181
+ } /* Name.Variable.Class */
182
+ .highlight .vg {
183
+ color: #033;
184
+ } /* Name.Variable.Global */
185
+ .highlight .vi {
186
+ color: #9e5bbc;
187
+ } /* Name.Variable.Instance */
188
+ .highlight .il {
189
+ color: #f60;
190
+ } /* Literal.Number.Integer.Long */
191
+
192
+ .css .o,
193
+ .css .o + .nt,
194
+ .css .nt + .nt {
195
+ color: #999;
196
+ }
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-hyde-dark
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdus
@@ -66,6 +66,11 @@ files:
66
66
  - _layouts/default.html
67
67
  - _layouts/page.html
68
68
  - _layouts/post.html
69
+ - public/apple-touch-icon-144-precomposed.png
70
+ - public/css/hyde.css
71
+ - public/css/poole.css
72
+ - public/css/syntax.css
73
+ - public/favicon.ico
69
74
  homepage: https://github.com/thisisabdus/hyde-dark
70
75
  licenses:
71
76
  - MIT