balean-theme 0.0.3 → 0.1.1
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 +33 -1
- data/_sass/_bootstrap.scss +13 -0
- data/_sass/balean/base/_base.scss +230 -0
- data/_sass/balean/base/_index.scss +1 -0
- data/_sass/balean/components/_buttons.scss +56 -0
- data/_sass/balean/components/_header.scss +394 -0
- data/_sass/balean/components/_index.scss +5 -0
- data/_sass/balean/components/_sections.scss +84 -0
- data/_sass/balean/settings/_balean-font.scss +9 -0
- data/_sass/balean/settings/_color-scheme.scss +38 -0
- data/_sass/balean/settings/_index.scss +2 -0
- data/_sass/balean/tools/_animate.scss +13 -0
- data/_sass/balean/tools/_grid.scss +131 -0
- data/_sass/balean/tools/_index.scss +7 -0
- data/_sass/balean/tools/_normalize.scss +341 -0
- data/_sass/balean/tools/_reset.scss +38 -0
- data/_sass/balean/tools/_shared.scss +32 -0
- data/_sass/balean/tools/_splide.scss +1 -0
- data/_sass/balean/tools/_syntax-highlighting.scss +73 -0
- data/_sass/balean/variables/_index.scss +54 -0
- data/assets/css/balean-theme.scss +8 -0
- data/assets/images/logo-yellow.svg +10 -17
- metadata +21 -4
- data/_sass/balean/_balean-font.scss +0 -13
- data/_sass/balean/_color-scheme.scss +0 -14
- data/_sass/balean-theme.scss +0 -5
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
|
|
2
|
+
|
|
3
|
+
/* Document
|
|
4
|
+
========================================================================== */
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* 1. Correct the line height in all browsers.
|
|
8
|
+
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
html {
|
|
12
|
+
line-height: 1.15; /* 1 */
|
|
13
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/* Sections
|
|
17
|
+
========================================================================== */
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Remove the margin in all browsers.
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
body {
|
|
24
|
+
margin: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
|
29
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
h1 {
|
|
33
|
+
font-size: 2em;
|
|
34
|
+
margin: 0.67em 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* Grouping content
|
|
38
|
+
========================================================================== */
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* 1. Add the correct box sizing in Firefox.
|
|
42
|
+
* 2. Show the overflow in Edge and IE.
|
|
43
|
+
*/
|
|
44
|
+
|
|
45
|
+
hr {
|
|
46
|
+
box-sizing: content-box; /* 1 */
|
|
47
|
+
height: 0; /* 1 */
|
|
48
|
+
overflow: visible; /* 2 */
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
53
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
54
|
+
*/
|
|
55
|
+
|
|
56
|
+
pre {
|
|
57
|
+
font-family: monospace, monospace; /* 1 */
|
|
58
|
+
font-size: 1em; /* 2 */
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* Text-level semantics
|
|
62
|
+
========================================================================== */
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Remove the gray background on active links in IE 10.
|
|
66
|
+
*/
|
|
67
|
+
|
|
68
|
+
a {
|
|
69
|
+
background-color: transparent;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* 1. Remove the bottom border in Chrome 57-
|
|
74
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
75
|
+
*/
|
|
76
|
+
|
|
77
|
+
abbr[title] {
|
|
78
|
+
border-bottom: none; /* 1 */
|
|
79
|
+
text-decoration: underline; /* 2 */
|
|
80
|
+
text-decoration: underline dotted; /* 2 */
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
85
|
+
*/
|
|
86
|
+
|
|
87
|
+
b,
|
|
88
|
+
strong {
|
|
89
|
+
font-weight: bolder;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
94
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
95
|
+
*/
|
|
96
|
+
|
|
97
|
+
code,
|
|
98
|
+
kbd,
|
|
99
|
+
samp {
|
|
100
|
+
font-family: monospace, monospace; /* 1 */
|
|
101
|
+
font-size: 1em; /* 2 */
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Add the correct font size in all browsers.
|
|
106
|
+
*/
|
|
107
|
+
|
|
108
|
+
small {
|
|
109
|
+
font-size: 80%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
114
|
+
* all browsers.
|
|
115
|
+
*/
|
|
116
|
+
|
|
117
|
+
sub,
|
|
118
|
+
sup {
|
|
119
|
+
font-size: 75%;
|
|
120
|
+
line-height: 0;
|
|
121
|
+
position: relative;
|
|
122
|
+
vertical-align: baseline;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
sub {
|
|
126
|
+
bottom: -0.25em;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
sup {
|
|
130
|
+
top: -0.5em;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/* Embedded content
|
|
134
|
+
========================================================================== */
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Remove the border on images inside links in IE 10.
|
|
138
|
+
*/
|
|
139
|
+
|
|
140
|
+
img {
|
|
141
|
+
border-style: none;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Forms
|
|
145
|
+
========================================================================== */
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* 1. Change the font styles in all browsers.
|
|
149
|
+
* 2. Remove the margin in Firefox and Safari.
|
|
150
|
+
*/
|
|
151
|
+
|
|
152
|
+
button,
|
|
153
|
+
input,
|
|
154
|
+
optgroup,
|
|
155
|
+
select,
|
|
156
|
+
textarea {
|
|
157
|
+
font-family: inherit; /* 1 */
|
|
158
|
+
font-size: 100%; /* 1 */
|
|
159
|
+
line-height: 1.15; /* 1 */
|
|
160
|
+
margin: 0; /* 2 */
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Show the overflow in IE.
|
|
165
|
+
* 1. Show the overflow in Edge.
|
|
166
|
+
*/
|
|
167
|
+
|
|
168
|
+
button,
|
|
169
|
+
input { /* 1 */
|
|
170
|
+
overflow: visible;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
175
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
|
176
|
+
*/
|
|
177
|
+
|
|
178
|
+
button,
|
|
179
|
+
select { /* 1 */
|
|
180
|
+
text-transform: none;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Correct the inability to style clickable types in iOS and Safari.
|
|
185
|
+
*/
|
|
186
|
+
|
|
187
|
+
button,
|
|
188
|
+
[type="button"],
|
|
189
|
+
[type="reset"],
|
|
190
|
+
[type="submit"] {
|
|
191
|
+
-webkit-appearance: button;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Remove the inner border and padding in Firefox.
|
|
196
|
+
*/
|
|
197
|
+
|
|
198
|
+
button::-moz-focus-inner,
|
|
199
|
+
[type="button"]::-moz-focus-inner,
|
|
200
|
+
[type="reset"]::-moz-focus-inner,
|
|
201
|
+
[type="submit"]::-moz-focus-inner {
|
|
202
|
+
border-style: none;
|
|
203
|
+
padding: 0;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* Restore the focus styles unset by the previous rule.
|
|
208
|
+
*/
|
|
209
|
+
|
|
210
|
+
button:-moz-focusring,
|
|
211
|
+
[type="button"]:-moz-focusring,
|
|
212
|
+
[type="reset"]:-moz-focusring,
|
|
213
|
+
[type="submit"]:-moz-focusring {
|
|
214
|
+
outline: 1px dotted ButtonText;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* Correct the padding in Firefox.
|
|
219
|
+
*/
|
|
220
|
+
|
|
221
|
+
fieldset {
|
|
222
|
+
padding: 0.35em 0.75em 0.625em;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* 1. Correct the text wrapping in Edge and IE.
|
|
227
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
228
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
|
229
|
+
* `fieldset` elements in all browsers.
|
|
230
|
+
*/
|
|
231
|
+
|
|
232
|
+
legend {
|
|
233
|
+
box-sizing: border-box; /* 1 */
|
|
234
|
+
color: inherit; /* 2 */
|
|
235
|
+
display: table; /* 1 */
|
|
236
|
+
max-width: 100%; /* 1 */
|
|
237
|
+
padding: 0; /* 3 */
|
|
238
|
+
white-space: normal; /* 1 */
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
243
|
+
*/
|
|
244
|
+
|
|
245
|
+
progress {
|
|
246
|
+
vertical-align: baseline;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* Remove the default vertical scrollbar in IE 10+.
|
|
251
|
+
*/
|
|
252
|
+
|
|
253
|
+
textarea {
|
|
254
|
+
overflow: auto;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* 1. Add the correct box sizing in IE 10.
|
|
259
|
+
* 2. Remove the padding in IE 10.
|
|
260
|
+
*/
|
|
261
|
+
|
|
262
|
+
[type="checkbox"],
|
|
263
|
+
[type="radio"] {
|
|
264
|
+
box-sizing: border-box; /* 1 */
|
|
265
|
+
padding: 0; /* 2 */
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
270
|
+
*/
|
|
271
|
+
|
|
272
|
+
[type="number"]::-webkit-inner-spin-button,
|
|
273
|
+
[type="number"]::-webkit-outer-spin-button {
|
|
274
|
+
height: auto;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
|
279
|
+
* 2. Correct the outline style in Safari.
|
|
280
|
+
*/
|
|
281
|
+
|
|
282
|
+
[type="search"] {
|
|
283
|
+
-webkit-appearance: textfield; /* 1 */
|
|
284
|
+
outline-offset: -2px; /* 2 */
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Remove the inner padding in Chrome and Safari on macOS.
|
|
289
|
+
*/
|
|
290
|
+
|
|
291
|
+
[type="search"]::-webkit-search-decoration {
|
|
292
|
+
-webkit-appearance: none;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
297
|
+
* 2. Change font properties to `inherit` in Safari.
|
|
298
|
+
*/
|
|
299
|
+
|
|
300
|
+
::-webkit-file-upload-button {
|
|
301
|
+
-webkit-appearance: button; /* 1 */
|
|
302
|
+
font: inherit; /* 2 */
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
/* Interactive
|
|
306
|
+
========================================================================== */
|
|
307
|
+
|
|
308
|
+
/*
|
|
309
|
+
* Add the correct display in Edge, IE 10+, and Firefox.
|
|
310
|
+
*/
|
|
311
|
+
|
|
312
|
+
details {
|
|
313
|
+
display: block;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/*
|
|
317
|
+
* Add the correct display in all browsers.
|
|
318
|
+
*/
|
|
319
|
+
|
|
320
|
+
summary {
|
|
321
|
+
display: list-item;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/* Misc
|
|
325
|
+
========================================================================== */
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Add the correct display in IE 10+.
|
|
329
|
+
*/
|
|
330
|
+
|
|
331
|
+
template {
|
|
332
|
+
display: none;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
/**
|
|
336
|
+
* Add the correct display in IE 10.
|
|
337
|
+
*/
|
|
338
|
+
|
|
339
|
+
[hidden] {
|
|
340
|
+
display: none;
|
|
341
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A very simple reset that sits on top of Normalize.css.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
body,
|
|
6
|
+
h1, h2, h3, h4, h5, h6,
|
|
7
|
+
p, blockquote, pre,
|
|
8
|
+
dl, dd, ol, ul,
|
|
9
|
+
fieldset, legend,
|
|
10
|
+
figure,
|
|
11
|
+
hr {
|
|
12
|
+
margin: 0;
|
|
13
|
+
padding: 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Remove trailing margins from nested lists.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
li > {
|
|
22
|
+
|
|
23
|
+
ul,
|
|
24
|
+
ol {
|
|
25
|
+
margin-bottom: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Remove default table spacing.
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
table {
|
|
36
|
+
border-collapse: collapse;
|
|
37
|
+
border-spacing: 0;
|
|
38
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
@use "balean/variables" as vars;
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Shared declarations for certain elements.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
h1, h2, h3, h4, h5, h6,
|
|
8
|
+
ul, ol, dl,
|
|
9
|
+
blockquote, p, address,
|
|
10
|
+
hr,
|
|
11
|
+
table,
|
|
12
|
+
fieldset, figure,
|
|
13
|
+
pre {
|
|
14
|
+
margin-bottom: 32px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Consistent indentation for lists.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
ul, ol,
|
|
23
|
+
dd {
|
|
24
|
+
margin-left: vars.$base-spacing-unit;
|
|
25
|
+
padding-left: 4px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
ul, ol {
|
|
29
|
+
li {
|
|
30
|
+
margin-bottom: 10px;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Syntax Highlighting
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
.highlight {
|
|
6
|
+
margin-bottom: 32px;
|
|
7
|
+
border-radius: 8px;
|
|
8
|
+
background: var(--syntax-highlighting-background);
|
|
9
|
+
|
|
10
|
+
.highlighter-rouge & {
|
|
11
|
+
background: var(--syntax-highlighting-background);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.c { color: #998; font-style: italic } // Comment
|
|
15
|
+
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
|
16
|
+
.k { font-weight: bold } // Keyword
|
|
17
|
+
.o { font-weight: bold } // Operator
|
|
18
|
+
.cm { color: #998; font-style: italic } // Comment.Multiline
|
|
19
|
+
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
|
20
|
+
.c1 { color: #998; font-style: italic } // Comment.Single
|
|
21
|
+
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
|
22
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
|
23
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
|
24
|
+
.ge { font-style: italic } // Generic.Emph
|
|
25
|
+
.gr { color: #a00 } // Generic.Error
|
|
26
|
+
.gh { color: #999 } // Generic.Heading
|
|
27
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
|
28
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
|
29
|
+
.go { color: #888 } // Generic.Output
|
|
30
|
+
.gp { color: #555 } // Generic.Prompt
|
|
31
|
+
.gs { font-weight: bold } // Generic.Strong
|
|
32
|
+
.gu { color: #aaa } // Generic.Subheading
|
|
33
|
+
.gt { color: #a00 } // Generic.Traceback
|
|
34
|
+
.kc { font-weight: bold } // Keyword.Constant
|
|
35
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
|
36
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
|
37
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
|
38
|
+
.kt { color: #5d76bf; font-weight: bold } // Keyword.Type
|
|
39
|
+
.m { color: #099 } // Literal.Number
|
|
40
|
+
.s { color: #ec2355 } // Literal.String
|
|
41
|
+
.na { color: #008080 } // Name.Attribute
|
|
42
|
+
.nb { color: #0086B3 } // Name.Builtin
|
|
43
|
+
.nc { color: #5d76bf; font-weight: bold } // Name.Class
|
|
44
|
+
.no { color: #008080 } // Name.Constant
|
|
45
|
+
.ni { color: #800080 } // Name.Entity
|
|
46
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
|
47
|
+
.nf { color: #900; font-weight: bold } // Name.Function
|
|
48
|
+
.nn { color: #555 } // Name.Namespace
|
|
49
|
+
.nt { color: #4d65dc } // Name.Tag
|
|
50
|
+
.nv { color: #008080 } // Name.Variable
|
|
51
|
+
.ow { font-weight: bold } // Operator.Word
|
|
52
|
+
.w { color: #bbb } // Text.Whitespace
|
|
53
|
+
.mf { color: #099 } // Literal.Number.Float
|
|
54
|
+
.mh { color: #099 } // Literal.Number.Hex
|
|
55
|
+
.mi { color: #099 } // Literal.Number.Integer
|
|
56
|
+
.mo { color: #099 } // Literal.Number.Oct
|
|
57
|
+
.sb { color: #ec2355 } // Literal.String.Backtick
|
|
58
|
+
.sc { color: #ec2355 } // Literal.String.Char
|
|
59
|
+
.sd { color: #ec2355 } // Literal.String.Doc
|
|
60
|
+
.s2 { color: #ec2355 } // Literal.String.Double
|
|
61
|
+
.se { color: #ec2355 } // Literal.String.Escape
|
|
62
|
+
.sh { color: #ec2355 } // Literal.String.Heredoc
|
|
63
|
+
.si { color: #ec2355 } // Literal.String.Interpol
|
|
64
|
+
.sx { color: #ec2355 } // Literal.String.Other
|
|
65
|
+
.sr { color: #009926 } // Literal.String.Regex
|
|
66
|
+
.s1 { color: #ec2355 } // Literal.String.Single
|
|
67
|
+
.ss { color: #990073 } // Literal.String.Symbol
|
|
68
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
|
69
|
+
.vc { color: #008080 } // Name.Variable.Class
|
|
70
|
+
.vg { color: #008080 } // Name.Variable.Global
|
|
71
|
+
.vi { color: #008080 } // Name.Variable.Instance
|
|
72
|
+
.il { color: #099 } // Literal.Number.Integer.Long
|
|
73
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
// *****************
|
|
2
|
+
// Global Variables
|
|
3
|
+
// *****************
|
|
4
|
+
|
|
5
|
+
// Spaces
|
|
6
|
+
$base-spacing-unit: 16px;
|
|
7
|
+
|
|
8
|
+
// Border radius
|
|
9
|
+
$global-radius: 8px;
|
|
10
|
+
|
|
11
|
+
// Transition
|
|
12
|
+
$global-transition: all .2s;
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
// *****************
|
|
16
|
+
// Typography
|
|
17
|
+
// *****************
|
|
18
|
+
$base-font-size: 20px;
|
|
19
|
+
$base-font-style: normal;
|
|
20
|
+
$base-font-variant: normal;
|
|
21
|
+
$base-font-weight: normal;
|
|
22
|
+
$base-font-family: 'Lato', Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
23
|
+
$base-line-height: 1.5;
|
|
24
|
+
|
|
25
|
+
// Headings
|
|
26
|
+
$heading-font-family: "Comfortaa", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI",
|
|
27
|
+
"Helvetica Neue", "Lucida Grande", Arial, sans-serif;
|
|
28
|
+
$heading-font-weight: 700;
|
|
29
|
+
|
|
30
|
+
$font-size-h1: 36px !default;
|
|
31
|
+
$font-size-h2: 28px !default;
|
|
32
|
+
$font-size-h3: 24px !default;
|
|
33
|
+
$font-size-h4: 20px !default;
|
|
34
|
+
$font-size-h5: 18px !default;
|
|
35
|
+
$font-size-h6: 16px !default;
|
|
36
|
+
|
|
37
|
+
$heading-line-height: 1.3;
|
|
38
|
+
$heading-letter-spacing: normal;
|
|
39
|
+
|
|
40
|
+
// Grid
|
|
41
|
+
$columns: 12;
|
|
42
|
+
$container-base-width: 1364px;
|
|
43
|
+
$container-offset: $base-spacing-unit;
|
|
44
|
+
|
|
45
|
+
$wide: 1400px;
|
|
46
|
+
$desktop: 1024px;
|
|
47
|
+
$tablet: 768px;
|
|
48
|
+
$mobile: 576px;
|
|
49
|
+
|
|
50
|
+
$mq: (
|
|
51
|
+
$mobile: $columns,
|
|
52
|
+
$tablet: $columns,
|
|
53
|
+
$desktop: $columns
|
|
54
|
+
);
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
<sodipodi:namedview
|
|
20
20
|
inkscape:document-units="px"
|
|
21
21
|
inkscape:zoom="1.0701837"
|
|
22
|
-
inkscape:cx="
|
|
23
|
-
inkscape:cy="
|
|
22
|
+
inkscape:cx="200.43288"
|
|
23
|
+
inkscape:cy="211.1787"
|
|
24
24
|
id="namedview1"
|
|
25
25
|
pagecolor="#ffffff"
|
|
26
26
|
bordercolor="#000000"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
inkscape:pageopacity="0.0"
|
|
30
30
|
inkscape:pagecheckerboard="0"
|
|
31
31
|
inkscape:deskcolor="#d1d1d1"
|
|
32
|
-
inkscape:window-width="
|
|
33
|
-
inkscape:window-height="
|
|
34
|
-
inkscape:window-x="
|
|
35
|
-
inkscape:window-y="
|
|
32
|
+
inkscape:window-width="1416"
|
|
33
|
+
inkscape:window-height="847"
|
|
34
|
+
inkscape:window-x="26"
|
|
35
|
+
inkscape:window-y="25"
|
|
36
36
|
inkscape:window-maximized="0"
|
|
37
37
|
inkscape:current-layer="layer1" />
|
|
38
38
|
<defs
|
|
@@ -41,16 +41,9 @@
|
|
|
41
41
|
inkscape:label="Layer 1"
|
|
42
42
|
inkscape:groupmode="layer"
|
|
43
43
|
id="layer1">
|
|
44
|
-
<
|
|
45
|
-
|
|
46
|
-
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.96px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa, @wght=700';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:'wght' 700;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#ffc800;fill-opacity:1;stroke:#ffc800;stroke-width:0.
|
|
47
|
-
|
|
48
|
-
y="0.82858777"
|
|
49
|
-
id="text1"><tspan
|
|
50
|
-
sodipodi:role="line"
|
|
51
|
-
id="tspan1"
|
|
52
|
-
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.96px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa, @wght=700';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:'wght' 700;fill:#ffc800;fill-opacity:1;stroke:#ffc800;stroke-width:0.0377953;stroke-dasharray:none;stroke-opacity:1"
|
|
53
|
-
x="-0.048082918"
|
|
54
|
-
y="0.82858777">BALEAN</tspan></text>
|
|
44
|
+
<path
|
|
45
|
+
id="text1"
|
|
46
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.96px;font-family:Comfortaa;-inkscape-font-specification:'Comfortaa, @wght=700';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:'wght' 700;text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;fill:#ffc800;fill-opacity:1;stroke:#ffc800;stroke-width:0.0378;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
|
|
47
|
+
d="M 0.097832032 0.078828125 C 0.083752032 0.078828125 0.071924219 0.083622657 0.062324219 0.093222657 C 0.052724219 0.10218266 0.047910157 0.11403 0.047910157 0.12875 L 0.047910157 0.77867188 C 0.047910157 0.79275188 0.052724219 0.80457969 0.062324219 0.81417969 C 0.071924219 0.82377969 0.083752032 0.82859375 0.097832032 0.82859375 L 0.34744141 0.82859375 C 0.39544141 0.82859375 0.43799719 0.81898516 0.47511719 0.79978516 C 0.51223719 0.77994516 0.54104344 0.75306063 0.56152344 0.71914063 C 0.58264344 0.68522063 0.59320313 0.64619125 0.59320313 0.60203125 C 0.59320313 0.55339125 0.58040469 0.51402531 0.55480469 0.48394532 C 0.52920469 0.45386532 0.49526735 0.43371656 0.45302735 0.42347656 C 0.48246735 0.40875657 0.50550844 0.38890531 0.52214844 0.36394531 C 0.53942844 0.33834532 0.54808594 0.30987563 0.54808594 0.27851563 C 0.54808594 0.23947563 0.53847735 0.20490422 0.51927735 0.17482422 C 0.50071735 0.14474422 0.47480344 0.12138609 0.44152344 0.10474609 C 0.40888344 0.087466095 0.37080516 0.078828125 0.32728516 0.078828125 L 0.097832032 0.078828125 z M 0.95607422 0.078828125 C 0.93431422 0.078828125 0.91864297 0.090021876 0.90904297 0.11242188 L 0.63927735 0.75658204 C 0.63159735 0.77386204 0.63254844 0.79018688 0.64214844 0.80554688 C 0.65174844 0.82090688 0.6655175 0.82859375 0.6834375 0.82859375 C 0.6923975 0.82859375 0.70103547 0.82601844 0.70935547 0.82089844 C 0.71831547 0.81577844 0.72503172 0.8081111 0.72951172 0.7978711 L 0.78449219 0.66347657 L 1.1285352 0.66347657 L 1.1826367 0.7978711 C 1.1864767 0.8074711 1.1925589 0.81513844 1.2008789 0.82089844 C 1.2098389 0.82601844 1.2191109 0.82859375 1.2287109 0.82859375 C 1.2472709 0.82859375 1.26104 0.82154094 1.27 0.80746094 C 1.2796 0.79274094 1.2808681 0.77643563 1.2738281 0.75851563 L 1.003125 0.11242188 C 0.99480501 0.090021876 0.97911422 0.078828125 0.95607422 0.078828125 z M 1.4370313 0.078828125 C 1.4235913 0.078828125 1.4120805 0.083622657 1.4024805 0.093222657 C 1.3928805 0.10282266 1.3880664 0.11467 1.3880664 0.12875 L 1.3880664 0.77867188 C 1.3880664 0.79275188 1.3925634 0.80457969 1.4015234 0.81417969 C 1.4111234 0.82377969 1.4229513 0.82859375 1.4370313 0.82859375 L 1.8344727 0.82859375 C 1.8485527 0.82859375 1.8604 0.82377969 1.87 0.81417969 C 1.8796 0.80457969 1.8843945 0.79275188 1.8843945 0.77867188 C 1.8843945 0.76459188 1.8796 0.75274454 1.87 0.74314454 C 1.8604 0.73354454 1.8485527 0.72875 1.8344727 0.72875 L 1.4869531 0.72875 L 1.4869531 0.12875 C 1.4869531 0.11467 1.4821586 0.10282266 1.4725586 0.093222657 C 1.4629586 0.083622657 1.4511113 0.078828125 1.4370313 0.078828125 z M 2.0543164 0.078828125 C 2.0402364 0.078828125 2.0283891 0.083622657 2.0187891 0.093222657 C 2.0091891 0.10218266 2.0043945 0.11403 2.0043945 0.12875 L 2.0043945 0.77867188 C 2.0043945 0.79275188 2.0091891 0.80457969 2.0187891 0.81417969 C 2.0283891 0.82377969 2.0402364 0.82859375 2.0543164 0.82859375 L 2.4882422 0.82859375 C 2.5029622 0.82859375 2.51479 0.82443329 2.52375 0.81611329 C 2.53271 0.80715329 2.5371875 0.79562297 2.5371875 0.78154297 C 2.5371875 0.76810297 2.53271 0.75722625 2.52375 0.74890625 C 2.51479 0.74058625 2.5029622 0.73642579 2.4882422 0.73642579 L 2.1042383 0.73642579 L 2.1042383 0.49642578 L 2.3797461 0.49642578 C 2.3944661 0.49642578 2.4063135 0.49226532 2.4152735 0.48394532 C 2.4242335 0.47498532 2.428711 0.46379156 2.428711 0.45035157 C 2.428711 0.43691157 2.4242335 0.42603485 2.4152735 0.41771485 C 2.4063135 0.40875485 2.3944661 0.40427735 2.3797461 0.40427735 L 2.1042383 0.40427735 L 2.1042383 0.17099609 L 2.4882422 0.17099609 C 2.5029622 0.17099609 2.51479 0.16683563 2.52375 0.15851563 C 2.53271 0.15019563 2.5371875 0.13929938 2.5371875 0.12585938 C 2.5371875 0.11177938 2.53271 0.10058563 2.52375 0.092265626 C 2.51479 0.083305626 2.5029622 0.078828125 2.4882422 0.078828125 L 2.0543164 0.078828125 z M 2.9192774 0.078828125 C 2.8975174 0.078828125 2.8818266 0.090021876 2.8722266 0.11242188 L 2.6024805 0.75658204 C 2.5948005 0.77386204 2.5957516 0.79018688 2.6053516 0.80554688 C 2.6149516 0.82090688 2.6287206 0.82859375 2.6466406 0.82859375 C 2.6556006 0.82859375 2.6642386 0.82601844 2.6725586 0.82089844 C 2.6815186 0.81577844 2.6882349 0.8081111 2.6927149 0.7978711 L 2.7476953 0.66347657 L 3.0917383 0.66347657 L 3.1458399 0.7978711 C 3.1496799 0.8074711 3.155762 0.81513844 3.164082 0.82089844 C 3.173042 0.82601844 3.1823141 0.82859375 3.1919141 0.82859375 C 3.2104741 0.82859375 3.2242431 0.82154094 3.2332031 0.80746094 C 3.2428031 0.79274094 3.2440713 0.77643563 3.2370313 0.75851563 L 2.9663086 0.11242188 C 2.9579886 0.090021876 2.9423174 0.078828125 2.9192774 0.078828125 z M 3.4002344 0.078828125 C 3.3861544 0.078828125 3.374307 0.083622657 3.364707 0.093222657 C 3.3557471 0.10218266 3.3512695 0.11403 3.3512695 0.12875 L 3.3512695 0.77867188 C 3.3512695 0.79275188 3.3557471 0.80457969 3.364707 0.81417969 C 3.374307 0.82377969 3.3861544 0.82859375 3.4002344 0.82859375 C 3.4149544 0.82859375 3.4268017 0.82377969 3.4357617 0.81417969 C 3.4453617 0.80457969 3.4501563 0.79275188 3.4501563 0.77867188 L 3.4501563 0.25451172 L 3.868711 0.8113086 C 3.873191 0.8170686 3.8789561 0.8215461 3.8859961 0.8247461 C 3.8936761 0.8273061 3.9007094 0.82859375 3.9071094 0.82859375 C 3.9218294 0.82859375 3.9336767 0.82377969 3.9426367 0.81417969 C 3.9515967 0.80457969 3.9560742 0.79275188 3.9560742 0.77867188 L 3.9560742 0.12875 C 3.9560742 0.11403 3.9515967 0.10218266 3.9426367 0.093222657 C 3.9336767 0.083622657 3.9218294 0.078828125 3.9071094 0.078828125 C 3.8930294 0.078828125 3.8812016 0.083622657 3.8716016 0.093222657 C 3.8620016 0.10218266 3.8571875 0.11403 3.8571875 0.12875 L 3.8571875 0.65386719 L 3.4386328 0.097070313 C 3.4283928 0.084910313 3.4155944 0.078828125 3.4002344 0.078828125 z M 0.14775391 0.17099609 L 0.32728516 0.17099609 C 0.36376516 0.17099609 0.3935225 0.1799511 0.4165625 0.19787109 C 0.4402425 0.21515109 0.45207032 0.24203563 0.45207032 0.27851563 C 0.45207032 0.31499563 0.4402425 0.34219719 0.4165625 0.36011719 C 0.3935225 0.37803719 0.36376516 0.38699219 0.32728516 0.38699219 L 0.14775391 0.38699219 L 0.14775391 0.17099609 z M 2.9210938 0.23960938 L 3.0584766 0.58089844 L 2.7814649 0.58089844 L 2.9210938 0.23960938 z M 0.95789063 0.23962891 L 1.0952734 0.58089844 L 0.81828125 0.58089844 L 0.95789063 0.23962891 z M 0.14775391 0.47914063 L 0.34744141 0.47914063 C 0.37688141 0.47914063 0.40279532 0.48395469 0.42519531 0.49355469 C 0.44759531 0.50251469 0.46518828 0.51594719 0.47798828 0.53386719 C 0.49078828 0.55178719 0.4971875 0.57451125 0.4971875 0.60203125 C 0.4971875 0.63147125 0.49078828 0.65611704 0.47798828 0.67595704 C 0.46518828 0.69579703 0.44759531 0.71083422 0.42519531 0.72107422 C 0.40279532 0.73131422 0.37688141 0.73642579 0.34744141 0.73642579 L 0.14775391 0.73642579 L 0.14775391 0.47914063 z " />
|
|
55
48
|
</g>
|
|
56
49
|
</svg>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: balean-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sander Brienen
|
|
@@ -38,9 +38,26 @@ extra_rdoc_files: []
|
|
|
38
38
|
files:
|
|
39
39
|
- LICENSE.txt
|
|
40
40
|
- README.md
|
|
41
|
-
- _sass/
|
|
42
|
-
- _sass/balean/
|
|
43
|
-
- _sass/balean/
|
|
41
|
+
- _sass/_bootstrap.scss
|
|
42
|
+
- _sass/balean/base/_base.scss
|
|
43
|
+
- _sass/balean/base/_index.scss
|
|
44
|
+
- _sass/balean/components/_buttons.scss
|
|
45
|
+
- _sass/balean/components/_header.scss
|
|
46
|
+
- _sass/balean/components/_index.scss
|
|
47
|
+
- _sass/balean/components/_sections.scss
|
|
48
|
+
- _sass/balean/settings/_balean-font.scss
|
|
49
|
+
- _sass/balean/settings/_color-scheme.scss
|
|
50
|
+
- _sass/balean/settings/_index.scss
|
|
51
|
+
- _sass/balean/tools/_animate.scss
|
|
52
|
+
- _sass/balean/tools/_grid.scss
|
|
53
|
+
- _sass/balean/tools/_index.scss
|
|
54
|
+
- _sass/balean/tools/_normalize.scss
|
|
55
|
+
- _sass/balean/tools/_reset.scss
|
|
56
|
+
- _sass/balean/tools/_shared.scss
|
|
57
|
+
- _sass/balean/tools/_splide.scss
|
|
58
|
+
- _sass/balean/tools/_syntax-highlighting.scss
|
|
59
|
+
- _sass/balean/variables/_index.scss
|
|
60
|
+
- assets/css/balean-theme.scss
|
|
44
61
|
- assets/fonts/comfortaa-v45-latin-regular.woff2
|
|
45
62
|
- assets/images/balean-favicon.png
|
|
46
63
|
- assets/images/icon-512x512.png
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/* Fonts */
|
|
2
|
-
@font-face {
|
|
3
|
-
font-display: swap;
|
|
4
|
-
font-family: "Comfortaa";
|
|
5
|
-
font-optical-sizing: auto;
|
|
6
|
-
font-weight: 400;
|
|
7
|
-
font-style: normal;
|
|
8
|
-
src: url($base-url + '/assets/fonts/comfortaa-v45-latin-regular.woff2') format('woff2');
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
$balean-font: "Comfortaa", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI",
|
|
13
|
-
"Helvetica Neue", "Lucida Grande", Arial, sans-serif
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
$balean-primary-1: #005f73ff; // Deep Blue
|
|
2
|
-
$balean-primary-2: #56cfe1ff; // Turquise
|
|
3
|
-
$balean-primary-3: #00ffffff; // Light blue
|
|
4
|
-
$balean-primary-4: #a8dadcff; // Soft Aqua
|
|
5
|
-
|
|
6
|
-
$balean-secondary-1: #ffc800ff; // Strong yellow
|
|
7
|
-
$balean-secondary-2: #ffdd85ff; // Golden sand
|
|
8
|
-
$balean-secondary-3: #ff8600ff; // Orange
|
|
9
|
-
$balean-secondary-4: #ff6b6bff; // Coral
|
|
10
|
-
$balean-secondary-5: #9ae6b4ff; // Seafoam green
|
|
11
|
-
|
|
12
|
-
$balean-bg-1: #ffffffff; // White
|
|
13
|
-
$balean-bg-2: #fdfcdcff; // Soft beige
|
|
14
|
-
$balean-bg-3: #003049ff; // Dark navy
|