jekyll-theme-nn 0.1.7 → 0.1.8

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.
@@ -1,4 +1,4 @@
1
-
2
- @import "bulma-tweaks";
3
-
4
- @import "highlight";
1
+
2
+ @import "bulma-tweaks";
3
+
4
+ @import "highlight";
@@ -1,22 +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.
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.
@@ -1,235 +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;
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;