jekyll-theme-nn 0.1.3 → 0.1.4
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 +4 -4
- data/README.md +3 -0
- data/_includes/components/made-with.html +10 -3
- data/_layouts/default.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/_bulma-tweaks.scss +29 -0
- data/_sass/_highlight.scss +362 -0
- data/_sass/nn-main.scss +4 -0
- data/_sass/vendor/nord/License.md +22 -0
- data/_sass/vendor/nord/nord.scss +235 -0
- data/assets/images/nord.svg +7 -0
- data/assets/nn.scss +1 -22
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdcb905fd76fd464e0c748e88ea8a36f4817c142
|
4
|
+
data.tar.gz: 90922989f80801d5cb42fb24a92c4bef59f9cb1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc6ad983e98926854430fa5e28eed6c83f752c746cc018d5f1066fe2aef4b9e39fd722eb59d97f33ce16e04f7cb28279cb2159360ab87bb16acab319c11dc8ec
|
7
|
+
data.tar.gz: 756eae82d56522032478882999c969539818df87cc38bb0338ad1e245491eaa76aa5ca62c78112fc09c36bcabe06d118425cf423f9aa8ea52687c306103cefa6
|
data/README.md
CHANGED
@@ -52,3 +52,6 @@ their own terms. These libraries are listed below:
|
|
52
52
|
- This project uses [Feather](https://feathericons.com/) Icons. Feather is
|
53
53
|
included in this project at `assets/vendor/feather`. See Feather's
|
54
54
|
[LICENSE](assets/vendor/feather/LICENSE).
|
55
|
+
- This project uses [Nord](https://arcticicestudio.github.io/nord/) colors.
|
56
|
+
These colors are included at `_sass/vendor/nord`. See Nord's
|
57
|
+
[LICENSE.md](_sass/vendor/nord/LICENSE.md).
|
@@ -5,23 +5,30 @@
|
|
5
5
|
</p>
|
6
6
|
<div class="level is-mobile made-with">
|
7
7
|
<div class="level-item">
|
8
|
-
<a href="https://jekyllrb.com">
|
8
|
+
<a href="https://jekyllrb.com" target="_blank">
|
9
9
|
<img src="{{ "/assets/images/jekyll.png" | relative_url }}"
|
10
10
|
alt="Bulma: a modern CSS framework">
|
11
11
|
</a>
|
12
12
|
</div>
|
13
13
|
<span class="icon"></span>
|
14
14
|
<div class="level-item">
|
15
|
-
<a href="https://bulma.io">
|
15
|
+
<a href="https://bulma.io" target="_blank">
|
16
16
|
<img src="{{ "/assets/images/bulma.png" | relative_url }}"
|
17
17
|
alt="Jekyll: Transform your plain text into static websites">
|
18
18
|
</a>
|
19
19
|
</div>
|
20
20
|
<span class="icon"></span>
|
21
21
|
<div class="level-item">
|
22
|
-
<a href="https://feathericons.com">
|
22
|
+
<a href="https://feathericons.com" target="_blank">
|
23
23
|
{% include components/feather-icon.html
|
24
24
|
icon="feather" class="has-text-grey" %}
|
25
25
|
</a>
|
26
26
|
</div>
|
27
|
+
<span class="icon"></span>
|
28
|
+
<div class="level-item">
|
29
|
+
<a href="https://arcticicestudio.github.io/nord/" target="_blank">
|
30
|
+
<img src="{{ "/assets/images/nord.svg" | relative_url }}"
|
31
|
+
alt="Nord: An arctic, north-bluish color palette">
|
32
|
+
</a>
|
33
|
+
</div>
|
27
34
|
</div>
|
data/_layouts/default.html
CHANGED
data/_layouts/post.html
CHANGED
@@ -0,0 +1,29 @@
|
|
1
|
+
.post-excerpt {
|
2
|
+
text-align: justify;
|
3
|
+
}
|
4
|
+
|
5
|
+
.feather {
|
6
|
+
width: 1.5em;
|
7
|
+
height: 1.5em;
|
8
|
+
stroke: currentColor;
|
9
|
+
stroke-width: 2;
|
10
|
+
stroke-linecap: round;
|
11
|
+
stroke-linejoin: round;
|
12
|
+
fill: none;
|
13
|
+
}
|
14
|
+
|
15
|
+
.hero img {
|
16
|
+
height: 6rem;
|
17
|
+
}
|
18
|
+
|
19
|
+
.made-with * {
|
20
|
+
max-height: 1.5rem;
|
21
|
+
filter: grayscale(100%);
|
22
|
+
}
|
23
|
+
|
24
|
+
.content {
|
25
|
+
div[class^="highlighter-"],
|
26
|
+
div[class*=" highlighter-"] {
|
27
|
+
margin-bottom: 1em;
|
28
|
+
}
|
29
|
+
}
|
@@ -0,0 +1,362 @@
|
|
1
|
+
@import "vendor/nord/nord";
|
2
|
+
|
3
|
+
.highlight {
|
4
|
+
color: $nord4;
|
5
|
+
background-color: $nord0;
|
6
|
+
|
7
|
+
/* Text.Whitespace */
|
8
|
+
.w {
|
9
|
+
background-color: $nord11;
|
10
|
+
}
|
11
|
+
|
12
|
+
/* Error */
|
13
|
+
.err {
|
14
|
+
color: $nord11;
|
15
|
+
}
|
16
|
+
|
17
|
+
/* Other */
|
18
|
+
.x {
|
19
|
+
color: $nord4;
|
20
|
+
}
|
21
|
+
|
22
|
+
/* Keyword */
|
23
|
+
.k {
|
24
|
+
color: $nord9;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Keyword.Constant */
|
28
|
+
.kc {
|
29
|
+
color: $nord11;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* Keyword.Declaration */
|
33
|
+
.kd {
|
34
|
+
color: $nord9;
|
35
|
+
}
|
36
|
+
/* Keyword.Namespace */
|
37
|
+
.kn {
|
38
|
+
color: $nord9;
|
39
|
+
}
|
40
|
+
|
41
|
+
/* Keyword.Pseudo */
|
42
|
+
.kp {
|
43
|
+
color: $nord9;
|
44
|
+
}
|
45
|
+
|
46
|
+
/* Keyword.Reserved */
|
47
|
+
.kr {
|
48
|
+
color: $nord10;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* Keyword.Type */
|
52
|
+
.kt {
|
53
|
+
color: $nord9;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* Name */
|
57
|
+
.n {
|
58
|
+
color: $nord4;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* Name.Attribute */
|
62
|
+
.na {
|
63
|
+
color: $nord7;
|
64
|
+
}
|
65
|
+
|
66
|
+
/* Name.Builtin */
|
67
|
+
.nb {
|
68
|
+
color: $nord9;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Name.Builtin.Pseudo */
|
72
|
+
.bp {
|
73
|
+
color: $nord9;
|
74
|
+
}
|
75
|
+
|
76
|
+
/* Name.Class */
|
77
|
+
.nc {
|
78
|
+
color: $nord7;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* Name.Constant */
|
82
|
+
.no {
|
83
|
+
color: $nord7;
|
84
|
+
}
|
85
|
+
|
86
|
+
/* Name.Decorator */
|
87
|
+
.nd {
|
88
|
+
color: $nord7;
|
89
|
+
}
|
90
|
+
|
91
|
+
/* Name.Entity */
|
92
|
+
.ni {
|
93
|
+
color: $nord12;
|
94
|
+
}
|
95
|
+
|
96
|
+
/* Name.Exception */
|
97
|
+
.ne {
|
98
|
+
color: $nord12;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* Name.Function */
|
102
|
+
.nf {
|
103
|
+
color: $nord8;
|
104
|
+
}
|
105
|
+
|
106
|
+
/* Name.Property */
|
107
|
+
.py {
|
108
|
+
color: $nord9;
|
109
|
+
}
|
110
|
+
|
111
|
+
/* Name.Label */
|
112
|
+
.nl {
|
113
|
+
color: $nord8;
|
114
|
+
}
|
115
|
+
|
116
|
+
/* Name.Namespace */
|
117
|
+
.nn {
|
118
|
+
color: $nord8;
|
119
|
+
}
|
120
|
+
|
121
|
+
/* Name.Other */
|
122
|
+
.nx {
|
123
|
+
color: $nord8;
|
124
|
+
}
|
125
|
+
|
126
|
+
/* Name.Tag */
|
127
|
+
.nt {
|
128
|
+
color: $nord9;
|
129
|
+
}
|
130
|
+
|
131
|
+
/* Name.Variable */
|
132
|
+
.nv {
|
133
|
+
color: $nord4;
|
134
|
+
}
|
135
|
+
|
136
|
+
/* Name.Variable.Class */
|
137
|
+
.vc {
|
138
|
+
color: $nord4;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* Name.Variable.Global */
|
142
|
+
.vg {
|
143
|
+
color: $nord4;
|
144
|
+
}
|
145
|
+
|
146
|
+
/* Name.Variable.Instance */
|
147
|
+
.vi {
|
148
|
+
color: $nord4;
|
149
|
+
}
|
150
|
+
|
151
|
+
/* Literal */
|
152
|
+
.l {
|
153
|
+
color: $nord9;
|
154
|
+
}
|
155
|
+
|
156
|
+
/* Literal.Date */
|
157
|
+
.ld {
|
158
|
+
color: $nord9;
|
159
|
+
}
|
160
|
+
|
161
|
+
/* Literal.String */
|
162
|
+
.s {
|
163
|
+
color: $nord14;
|
164
|
+
}
|
165
|
+
|
166
|
+
/* Literal.String.Backtick */
|
167
|
+
.sb {
|
168
|
+
color: $nord14;
|
169
|
+
}
|
170
|
+
|
171
|
+
/* Literal.String.Char */
|
172
|
+
.sc {
|
173
|
+
color: $nord14;
|
174
|
+
}
|
175
|
+
|
176
|
+
/* Literal.String.Doc */
|
177
|
+
.sd {
|
178
|
+
color: $nord14;
|
179
|
+
}
|
180
|
+
|
181
|
+
/* Literal.String.Double */
|
182
|
+
.s2 {
|
183
|
+
color: $nord14;
|
184
|
+
}
|
185
|
+
|
186
|
+
/* Literal.String.Escape */
|
187
|
+
.se {
|
188
|
+
color: $nord12;
|
189
|
+
}
|
190
|
+
|
191
|
+
/* Literal.String.Heredoc */
|
192
|
+
.sh {
|
193
|
+
color: $nord14;
|
194
|
+
}
|
195
|
+
|
196
|
+
/* Literal.String.Interpol */
|
197
|
+
.si {
|
198
|
+
color: $nord14;
|
199
|
+
}
|
200
|
+
|
201
|
+
/* Literal.String.Other */
|
202
|
+
.sx {
|
203
|
+
color: $nord14;
|
204
|
+
}
|
205
|
+
|
206
|
+
/* Literal.String.Regex */
|
207
|
+
.sr {
|
208
|
+
color: $nord13;
|
209
|
+
}
|
210
|
+
|
211
|
+
/* Literal.String.Single */
|
212
|
+
.s1 {
|
213
|
+
color: $nord14;
|
214
|
+
}
|
215
|
+
|
216
|
+
/* Literal.String.Symbol */
|
217
|
+
.ss {
|
218
|
+
color: $nord14;
|
219
|
+
}
|
220
|
+
|
221
|
+
/* Literal.Number */
|
222
|
+
.m {
|
223
|
+
color: $nord15;
|
224
|
+
}
|
225
|
+
|
226
|
+
/* Literal.Number.Float */
|
227
|
+
.mf {
|
228
|
+
color: $nord15;
|
229
|
+
}
|
230
|
+
|
231
|
+
/* Literal.Number.Hex */
|
232
|
+
.mh {
|
233
|
+
color: $nord15;
|
234
|
+
}
|
235
|
+
|
236
|
+
/* Literal.Number.Integer */
|
237
|
+
.mi {
|
238
|
+
color: $nord15;
|
239
|
+
}
|
240
|
+
|
241
|
+
/* Literal.Number.Integer.Long */
|
242
|
+
.il {
|
243
|
+
color: $nord15;
|
244
|
+
}
|
245
|
+
|
246
|
+
/* Literal.Number.Oct */
|
247
|
+
.mo {
|
248
|
+
color: $nord15;
|
249
|
+
}
|
250
|
+
|
251
|
+
/* Literal.Number.Hex */
|
252
|
+
.mx {
|
253
|
+
color: $nord15;
|
254
|
+
}
|
255
|
+
|
256
|
+
/* Literal.Number.Bin */
|
257
|
+
.mb {
|
258
|
+
color: $nord15;
|
259
|
+
}
|
260
|
+
|
261
|
+
/* Operator */
|
262
|
+
.o {
|
263
|
+
color: $nord4;
|
264
|
+
}
|
265
|
+
|
266
|
+
/* Operator.Word */
|
267
|
+
.ow {
|
268
|
+
color: $nord9;
|
269
|
+
}
|
270
|
+
|
271
|
+
/* Punctuation */
|
272
|
+
.p {
|
273
|
+
color: $nord4;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* Comment */
|
277
|
+
.c {
|
278
|
+
color: $nord3;
|
279
|
+
}
|
280
|
+
|
281
|
+
/* Comment.Multiline */
|
282
|
+
.cm {
|
283
|
+
color: $nord3;
|
284
|
+
}
|
285
|
+
|
286
|
+
/* Comment.Preproc */
|
287
|
+
.cp {
|
288
|
+
color: $nord10;
|
289
|
+
}
|
290
|
+
|
291
|
+
/* Comment.Single */
|
292
|
+
.c1 {
|
293
|
+
color: $nord3;
|
294
|
+
}
|
295
|
+
|
296
|
+
/* Comment.Special */
|
297
|
+
.cs {
|
298
|
+
color: $nord3;
|
299
|
+
}
|
300
|
+
|
301
|
+
/* Generic */
|
302
|
+
.g {
|
303
|
+
color: $nord4;
|
304
|
+
}
|
305
|
+
|
306
|
+
/* Generic.Deleted */
|
307
|
+
.gd {
|
308
|
+
color: $nord13;
|
309
|
+
}
|
310
|
+
|
311
|
+
/* Generic.Emph */
|
312
|
+
.ge {
|
313
|
+
color: $nord4;
|
314
|
+
font-style: italic;
|
315
|
+
}
|
316
|
+
|
317
|
+
/* Generic.Error */
|
318
|
+
.gr {
|
319
|
+
color: $nord11;
|
320
|
+
}
|
321
|
+
|
322
|
+
/* Generic.Heading */
|
323
|
+
.gh {
|
324
|
+
color: $nord8;
|
325
|
+
}
|
326
|
+
|
327
|
+
/* Generic.Inserted */
|
328
|
+
.gi {
|
329
|
+
color: $nord4;
|
330
|
+
}
|
331
|
+
|
332
|
+
/* Generic.Output */
|
333
|
+
.go {
|
334
|
+
color: $nord4;
|
335
|
+
}
|
336
|
+
|
337
|
+
/* Generic.Prompt */
|
338
|
+
.gp {
|
339
|
+
color: $nord4;
|
340
|
+
}
|
341
|
+
|
342
|
+
/* Generic.Strong */
|
343
|
+
.gs {
|
344
|
+
color: $nord4;
|
345
|
+
font-weight: bold;
|
346
|
+
}
|
347
|
+
|
348
|
+
/* Generic.Subheading */
|
349
|
+
.gu {
|
350
|
+
color: $nord9;
|
351
|
+
}
|
352
|
+
|
353
|
+
/* Generic.Traceback */
|
354
|
+
.gt {
|
355
|
+
color: $nord13;
|
356
|
+
}
|
357
|
+
|
358
|
+
/* Generic.Lineno */
|
359
|
+
.gl {
|
360
|
+
color: $nord2;
|
361
|
+
}
|
362
|
+
}
|
data/_sass/nn-main.scss
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016-present Arctic Ice Studio <development@arcticicestudio.com> (http://arcticicestudio.com)
|
4
|
+
Copyright (c) 2016-present Sven Greb <code@svengreb.de> (http://svengreb.de)
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
8
|
+
in the Software without restriction, including without limitation the rights
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
11
|
+
furnished to do so, subject to the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
14
|
+
copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
22
|
+
SOFTWARE.
|
@@ -0,0 +1,235 @@
|
|
1
|
+
// Copyright (c) 2016-present Arctic Ice Studio <development@arcticicestudio.com>
|
2
|
+
// Copyright (c) 2016-present Sven Greb <code@svengreb.de>
|
3
|
+
|
4
|
+
// Project: Nord
|
5
|
+
// Version: 0.2.0
|
6
|
+
// Repository: https://github.com/arcticicestudio/nord
|
7
|
+
// License: MIT
|
8
|
+
// References:
|
9
|
+
// http://sass-lang.com
|
10
|
+
// http://sassdoc.com
|
11
|
+
|
12
|
+
////
|
13
|
+
/// An arctic, north-bluish color palette.
|
14
|
+
/// Created for the clean- and minimal flat design pattern to achieve a optimal focus and readability for code syntax
|
15
|
+
/// highlighting and UI.
|
16
|
+
/// It consists of a total of sixteen, carefully selected, dimmed pastel colors for a eye-comfortable, but yet colorful
|
17
|
+
/// ambiance.
|
18
|
+
///
|
19
|
+
/// @author Arctic Ice Studio <development@arcticicestudio.com>
|
20
|
+
////
|
21
|
+
|
22
|
+
/// Base component color of "Polar Night".
|
23
|
+
///
|
24
|
+
/// Used for texts, backgrounds, carets and structuring characters like curly- and square brackets.
|
25
|
+
///
|
26
|
+
/// @access public
|
27
|
+
/// @example scss - SCSS
|
28
|
+
/// /* For dark ambiance themes */
|
29
|
+
/// .background {
|
30
|
+
/// background-color: $nord0;
|
31
|
+
/// }
|
32
|
+
/// /* For light ambiance themes */
|
33
|
+
/// .text {
|
34
|
+
/// color: $nord0;
|
35
|
+
/// }
|
36
|
+
/// @group polarnight
|
37
|
+
/// @since 0.1.0
|
38
|
+
$nord0: #2e3440;
|
39
|
+
|
40
|
+
/// Lighter shade color of the base component color.
|
41
|
+
///
|
42
|
+
/// Used as a lighter background color for UI elements like status bars.
|
43
|
+
///
|
44
|
+
/// @access public
|
45
|
+
/// @group polarnight
|
46
|
+
/// @see $nord0
|
47
|
+
/// @since 0.1.0
|
48
|
+
$nord1: #3b4252;
|
49
|
+
|
50
|
+
/// Lighter shade color of the base component color.
|
51
|
+
///
|
52
|
+
/// Used as line highlighting in the editor.
|
53
|
+
/// In the UI scope it may be used as selection- and highlight color.
|
54
|
+
///
|
55
|
+
/// @access public
|
56
|
+
/// @example scss - SCSS
|
57
|
+
/// /* Code Syntax Highlighting scope */
|
58
|
+
/// .editor {
|
59
|
+
/// &.line {
|
60
|
+
/// background-color: $nord2;
|
61
|
+
/// }
|
62
|
+
/// }
|
63
|
+
///
|
64
|
+
/// /* UI scope */
|
65
|
+
/// button {
|
66
|
+
/// &:selected {
|
67
|
+
/// background-color: $nord2;
|
68
|
+
/// }
|
69
|
+
/// }
|
70
|
+
/// @group polarnight
|
71
|
+
/// @see $nord0
|
72
|
+
/// @since 0.1.0
|
73
|
+
$nord2: #434c5e;
|
74
|
+
|
75
|
+
/// Lighter shade color of the base component color.
|
76
|
+
///
|
77
|
+
/// Used for comments, invisibles, indent- and wrap guide marker.
|
78
|
+
/// In the UI scope used as pseudoclass color for disabled elements.
|
79
|
+
///
|
80
|
+
/// @access public
|
81
|
+
/// @example scss - SCSS
|
82
|
+
/// /* Code Syntax Highlighting scope */
|
83
|
+
/// .editor {
|
84
|
+
/// &.indent-guide,
|
85
|
+
/// &.wrap-guide {
|
86
|
+
/// &.marker {
|
87
|
+
/// color: $nord3;
|
88
|
+
/// }
|
89
|
+
/// }
|
90
|
+
/// }
|
91
|
+
/// .comment,
|
92
|
+
/// .invisible {
|
93
|
+
/// color: $nord3;
|
94
|
+
/// }
|
95
|
+
///
|
96
|
+
/// /* UI scope */
|
97
|
+
/// button {
|
98
|
+
/// &:disabled {
|
99
|
+
/// background-color: $nord3;
|
100
|
+
/// }
|
101
|
+
/// }
|
102
|
+
/// @group polarnight
|
103
|
+
/// @see $nord0
|
104
|
+
/// @since 0.1.0
|
105
|
+
$nord3: #4c566a;
|
106
|
+
|
107
|
+
/// Base component color of "Snow Storm".
|
108
|
+
///
|
109
|
+
/// Main color for text, variables, constants and attributes.
|
110
|
+
/// In the UI scope used as semi-light background depending on the theme shading design.
|
111
|
+
///
|
112
|
+
/// @access public
|
113
|
+
/// @example scss - SCSS
|
114
|
+
/// /* For light ambiance themes */
|
115
|
+
/// .background {
|
116
|
+
/// background-color: $nord4;
|
117
|
+
/// }
|
118
|
+
/// /* For dark ambiance themes */
|
119
|
+
/// .text {
|
120
|
+
/// color: $nord4;
|
121
|
+
/// }
|
122
|
+
/// @group snowstorm
|
123
|
+
/// @since 0.1.0
|
124
|
+
$nord4: #d8dee9;
|
125
|
+
|
126
|
+
/// Lighter shade color of the base component color.
|
127
|
+
///
|
128
|
+
/// Used as a lighter background color for UI elements like status bars.
|
129
|
+
/// Used as semi-light background depending on the theme shading design.
|
130
|
+
///
|
131
|
+
/// @access public
|
132
|
+
/// @group snowstorm
|
133
|
+
/// @see $nord4
|
134
|
+
/// @since 0.1.0
|
135
|
+
$nord5: #e5e9f0;
|
136
|
+
|
137
|
+
/// Lighter shade color of the base component color.
|
138
|
+
///
|
139
|
+
/// Used for punctuations, carets and structuring characters like curly- and square brackets.
|
140
|
+
/// In the UI scope used as background, selection- and highlight color depending on the theme shading design.
|
141
|
+
///
|
142
|
+
/// @access public
|
143
|
+
/// @group snowstorm
|
144
|
+
/// @see $nord4
|
145
|
+
/// @since 0.1.0
|
146
|
+
$nord6: #eceff4;
|
147
|
+
|
148
|
+
/// Bluish core color.
|
149
|
+
///
|
150
|
+
/// Used for classes, types and documentation tags.
|
151
|
+
///
|
152
|
+
/// @access public
|
153
|
+
/// @group frost
|
154
|
+
/// @since 0.1.0
|
155
|
+
$nord7: #8fbcbb;
|
156
|
+
|
157
|
+
/// Bluish core accent color.
|
158
|
+
///
|
159
|
+
/// Represents the accent color of the color palette.
|
160
|
+
/// Main color for primary UI elements and methods/functions.
|
161
|
+
///
|
162
|
+
/// Can be used for
|
163
|
+
/// - Markup quotes
|
164
|
+
/// - Markup link URLs
|
165
|
+
///
|
166
|
+
/// @access public
|
167
|
+
/// @group frost
|
168
|
+
/// @since 0.1.0
|
169
|
+
$nord8: #88c0d0;
|
170
|
+
|
171
|
+
/// Bluish core color.
|
172
|
+
///
|
173
|
+
/// Used for language-specific syntactic/reserved support characters and keywords, operators, tags, units and
|
174
|
+
/// punctuations like (semi)colons,commas and braces.
|
175
|
+
///
|
176
|
+
/// @access public
|
177
|
+
/// @group frost
|
178
|
+
/// @since 0.1.0
|
179
|
+
$nord9: #81a1c1;
|
180
|
+
|
181
|
+
/// Bluish core color.
|
182
|
+
///
|
183
|
+
/// Used for markup doctypes, import/include/require statements, pre-processor statements and at-rules (`@`).
|
184
|
+
///
|
185
|
+
/// @access public
|
186
|
+
/// @group frost
|
187
|
+
/// @since 0.1.0
|
188
|
+
$nord10: #5e81ac;
|
189
|
+
|
190
|
+
/// Colorful component color.
|
191
|
+
///
|
192
|
+
/// Used for errors, git/diff deletion and linter marker.
|
193
|
+
///
|
194
|
+
/// @access public
|
195
|
+
/// @group aurora
|
196
|
+
/// @since 0.1.0
|
197
|
+
$nord11: #bf616a;
|
198
|
+
|
199
|
+
/// Colorful component color.
|
200
|
+
///
|
201
|
+
/// Used for annotations.
|
202
|
+
///
|
203
|
+
/// @access public
|
204
|
+
/// @group aurora
|
205
|
+
/// @since 0.1.0
|
206
|
+
$nord12: #d08770;
|
207
|
+
|
208
|
+
/// Colorful component color.
|
209
|
+
///
|
210
|
+
/// Used for escape characters, regular expressions and markup entities.
|
211
|
+
/// In the UI scope used for warnings and git/diff renamings.
|
212
|
+
///
|
213
|
+
/// @access public
|
214
|
+
/// @group aurora
|
215
|
+
/// @since 0.1.0
|
216
|
+
$nord13: #ebcb8b;
|
217
|
+
|
218
|
+
/// Colorful component color.
|
219
|
+
///
|
220
|
+
/// Main color for strings and attribute values.
|
221
|
+
/// In the UI scope used for git/diff additions and success visualizations.
|
222
|
+
///
|
223
|
+
/// @access public
|
224
|
+
/// @group aurora
|
225
|
+
/// @since 0.1.0
|
226
|
+
$nord14: #a3be8c;
|
227
|
+
|
228
|
+
/// Colorful component color.
|
229
|
+
///
|
230
|
+
/// Used for numbers.
|
231
|
+
///
|
232
|
+
/// @access public
|
233
|
+
/// @group aurora
|
234
|
+
/// @since 0.1.0
|
235
|
+
$nord15: #b48ead;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512">
|
2
|
+
<path fill="#2E3440" stroke="#2E3440" stroke-miterlimit="10" d="M256 0C114.62 0 0 114.62 0 256s114.62 256 256 256 256-114.62 256-256S397.38 0 256 0zm0 492C125.66 492 20 386.34 20 256S125.66 20 256 20s236 105.66 236 236-105.66 236-236 236z"/>
|
3
|
+
<g fill="#2E3440">
|
4
|
+
<path d="M302.203 364.262l-88.87-113.752v-31.563l98.494 127.328h52.927v-179.29H275.74l-19.246-19.247H384v216.524z"/>
|
5
|
+
<path d="M209.798 147.738l88.868 113.748v31.563l-98.491-127.326h-52.927v179.291h89.014l19.245 19.246H128.001V147.738z"/>
|
6
|
+
</g>
|
7
|
+
</svg>
|
data/assets/nn.scss
CHANGED
@@ -2,25 +2,4 @@
|
|
2
2
|
# This file needs front matter in order for Jekyll to process Sass
|
3
3
|
---
|
4
4
|
|
5
|
-
|
6
|
-
text-align: justify;
|
7
|
-
}
|
8
|
-
|
9
|
-
.feather {
|
10
|
-
width: 1.5em;
|
11
|
-
height: 1.5em;
|
12
|
-
stroke: currentColor;
|
13
|
-
stroke-width: 2;
|
14
|
-
stroke-linecap: round;
|
15
|
-
stroke-linejoin: round;
|
16
|
-
fill: none;
|
17
|
-
}
|
18
|
-
|
19
|
-
.hero img {
|
20
|
-
height: 6rem;
|
21
|
-
}
|
22
|
-
|
23
|
-
.made-with * {
|
24
|
-
max-height: 1.5rem;
|
25
|
-
filter: grayscale(100%);
|
26
|
-
}
|
5
|
+
@import "nn-main";
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-nn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nicholas Nooney
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-03-
|
11
|
+
date: 2018-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -75,8 +75,14 @@ files:
|
|
75
75
|
- _layouts/front.html
|
76
76
|
- _layouts/page.html
|
77
77
|
- _layouts/post.html
|
78
|
+
- _sass/_bulma-tweaks.scss
|
79
|
+
- _sass/_highlight.scss
|
80
|
+
- _sass/nn-main.scss
|
81
|
+
- _sass/vendor/nord/License.md
|
82
|
+
- _sass/vendor/nord/nord.scss
|
78
83
|
- assets/images/bulma.png
|
79
84
|
- assets/images/jekyll.png
|
85
|
+
- assets/images/nord.svg
|
80
86
|
- assets/nn.scss
|
81
87
|
- assets/vendor/bulma/LICENSE
|
82
88
|
- assets/vendor/bulma/bulma.css
|