jekyll-theme-unity 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +56 -0
  4. data/_config.yml +135 -0
  5. data/_includes/assets/Google-Analytics.html +12 -0
  6. data/_includes/assets/anchor-headings.html +164 -0
  7. data/_includes/assets/btt.html +5 -0
  8. data/_includes/assets/code-header.html +6 -0
  9. data/_includes/assets/noscript.html +3 -0
  10. data/_includes/assets/site-banner.html +9 -0
  11. data/_includes/assets/site-top-bar.html +10 -0
  12. data/_includes/assets/toc.html +174 -0
  13. data/_includes/assets/youtube-embed.html +6 -0
  14. data/_includes/footer.html +39 -0
  15. data/_includes/head.html +21 -0
  16. data/_includes/header.html +49 -0
  17. data/_layouts/default.html +23 -0
  18. data/_layouts/page.html +5 -0
  19. data/_layouts/post.html +52 -0
  20. data/_layouts/post_home.html +105 -0
  21. data/_sass/Material/baseline.scss +18 -0
  22. data/_sass/Material/colors.scss +130 -0
  23. data/_sass/Material/elevation.scss +62 -0
  24. data/_sass/Material/motion.scss +180 -0
  25. data/_sass/Material/palette.scss +118 -0
  26. data/_sass/Material/shape.scss +109 -0
  27. data/_sass/Material/state.scss +35 -0
  28. data/_sass/Material/typography.scss +505 -0
  29. data/_sass/custom/layout.scss +1 -0
  30. data/_sass/custom/styles_variables.scss +70 -0
  31. data/_sass/custom/variables.scss +1 -0
  32. data/_sass/jekyll-theme-unity.scss +1 -0
  33. data/_sass/layout/base.scss +525 -0
  34. data/_sass/layout/highlight-dark.scss +357 -0
  35. data/_sass/layout/highlight-light.scss +202 -0
  36. data/_sass/layout/layout.scss +581 -0
  37. data/_sass/layout/styles_variables.scss +156 -0
  38. data/_sass/variables.scss +170 -0
  39. data/assets/css/style.scss +10 -0
  40. data/assets/image/404.svg +34 -0
  41. data/assets/image/Unity.png +0 -0
  42. data/assets/image/bg-banner.png +0 -0
  43. data/assets/image/favicons/android-chrome-192x192.png +0 -0
  44. data/assets/image/favicons/android-chrome-512x512.png +0 -0
  45. data/assets/image/favicons/apple-touch-icon-120x120.png +0 -0
  46. data/assets/image/favicons/apple-touch-icon-152x152.png +0 -0
  47. data/assets/image/favicons/apple-touch-icon-180x180.png +0 -0
  48. data/assets/image/favicons/apple-touch-icon-60x60.png +0 -0
  49. data/assets/image/favicons/apple-touch-icon-76x76.png +0 -0
  50. data/assets/image/favicons/apple-touch-icon.png +0 -0
  51. data/assets/image/favicons/browserconfig.xml +12 -0
  52. data/assets/image/favicons/favicon-16x16.png +0 -0
  53. data/assets/image/favicons/favicon-32x32.png +0 -0
  54. data/assets/image/favicons/favicon.ico +0 -0
  55. data/assets/image/favicons/mstile-150x150.png +0 -0
  56. data/assets/image/favicons/mstile-310x150.png +0 -0
  57. data/assets/image/favicons/mstile-310x310.png +0 -0
  58. data/assets/image/favicons/mstile-70x70.png +0 -0
  59. data/assets/image/favicons/safari-pinned-tab.svg +22 -0
  60. data/assets/image/favicons/site.webmanifest +17 -0
  61. data/assets/image/mobile.png +0 -0
  62. data/assets/js/main.js +228 -0
  63. data/bin/run +196 -0
  64. metadata +195 -0
@@ -0,0 +1,581 @@
1
+ .site-nav-side-bar {
2
+ @include duration-350;
3
+ @include easing-standard-decelerate;
4
+ transform: translateX(0rem);
5
+ z-index: 6;
6
+ width: 90px;
7
+ height: -webkit-fill-available;
8
+ position: fixed;
9
+ display: flex;
10
+ flex-direction: column;
11
+ padding: 12px;
12
+ overflow: auto;
13
+
14
+ label {
15
+ @include link(
16
+ var(--md-sys-color-on-surface),
17
+ var(--md-sys-color-on-background),
18
+ var(--md-sys-color-on-surface-variant-2)
19
+ );
20
+ @include shape-extra-large;
21
+ display: none;
22
+ align-items: center;
23
+ justify-content: center;
24
+ width: 48px;
25
+ height: 48px;
26
+ margin-bottom: 8px;
27
+ margin-left: 4px;
28
+ color: var(--md-sys-color-on-surface-variant);
29
+ cursor: pointer;
30
+ user-select: none;
31
+ }
32
+ input {
33
+ display: none;
34
+ }
35
+ &:last-child {
36
+ margin-top: auto;
37
+ }
38
+
39
+ .nav-links-container {
40
+ padding-right: 10px;
41
+ text-align: center;
42
+ display: flex;
43
+ flex-direction: column;
44
+ margin-top: 20px;
45
+ gap: 12px;
46
+ .nav-links {
47
+ @include label-medium;
48
+ background: inherit;
49
+ color: var(--md-sys-color-on-surface-variant);
50
+ display: block;
51
+ width: 80px;
52
+ padding-left: 0;
53
+ padding-top: 5px;
54
+ padding-bottom: 5px;
55
+ span{
56
+ display: flex;
57
+ position: relative;
58
+ align-items: center;
59
+ justify-content: center;
60
+ width: 56px;
61
+ height: 32px;
62
+ margin-right: auto;
63
+ margin-bottom: 4px;
64
+ margin-left: auto;
65
+ border-radius: 16px;
66
+ padding: 0;
67
+ }
68
+ p {
69
+ align-self: flex-start;
70
+ margin: 0;
71
+ }
72
+ &:hover {
73
+ color: var(--md-sys-color-on-surface);
74
+ span{
75
+ background: var(--md-sys-color-on-surface-variant-2);
76
+ }
77
+ }
78
+ &:first-child {
79
+ @include label-medium;
80
+ color: var(--md-sys-color-on-surface-variant);
81
+ span{
82
+ @include elevation1(var(--md-sys-color-primary-container));
83
+ color: var(--md-sys-color-on-primary-container);
84
+ &:hover {
85
+ @include elevation5(var(--md-sys-color-primary-container));
86
+ }
87
+ }
88
+ }
89
+ }
90
+ .nav-links-active {
91
+ span{
92
+ &::before {
93
+ content: "";
94
+ position: absolute;
95
+ width: 100%;
96
+ height: 100%;
97
+ border-radius: 100px;
98
+ background-color: var(--md-sys-color-surface);
99
+ background: var(--md-sys-color-on-surface-variant-2);
100
+ animation-duration: 0.2s;
101
+ animation-fill-mode: both;
102
+ animation-name: activeanimation;
103
+ z-index: -1;
104
+ }
105
+ }
106
+ }
107
+ }
108
+ .nav-theme-toggle {
109
+ margin-top: auto;
110
+ height: 48px;
111
+ width: 48px;
112
+ padding-right: 10px;
113
+ user-select: none;
114
+ margin-left: auto;
115
+ margin-right: auto;
116
+ p {
117
+ display: none;
118
+ line-height: normal;
119
+ margin-bottom: 0;
120
+ }
121
+ &:hover {
122
+ span{
123
+ background: var(--md-sys-color-on-surface-variant-2);
124
+ }
125
+ }
126
+ span {
127
+ @include outline;
128
+ @include shape-extra-large;
129
+ height: 48px;
130
+ width: 48px;
131
+ display: flex;
132
+ justify-content: center;
133
+ align-items: center;
134
+ font-size: 24px;
135
+ cursor: pointer;
136
+ transition: all 0.3s ease;
137
+ }
138
+ }
139
+ @media (max-width: $defualt-width) {
140
+ @include elevation1(var(--md-sys-color-surface));
141
+ transform: translateX(-1000rem);
142
+ width: 300px;
143
+ display: flex;
144
+ flex-direction: column;
145
+ padding: 13px;
146
+ border-start-end-radius: 20px;
147
+ border-end-end-radius: 20px;
148
+ overflow: auto;
149
+
150
+ label {
151
+ display: flex;
152
+ }
153
+ .nav-links-container {
154
+ .nav-links {
155
+ @include shape-extra-large;
156
+ @include link(
157
+ var(--md-sys-color-on-surface-variant),
158
+ var(--md-sys-color-on-surface),
159
+ var(--md-sys-color-on-surface-variant-2)
160
+ );
161
+ @include label-large;
162
+ display: flex;
163
+ flex-direction: row;
164
+ align-items: center;
165
+ padding: 18px 0px 18px 12px;
166
+ gap: 12px;
167
+ width: auto;
168
+ p {
169
+ align-self: stretch;
170
+ }
171
+ span{
172
+ background: inherit;
173
+ padding-left: 12px;
174
+ margin: 0;
175
+ display: block;
176
+ height: auto;
177
+ width: auto;
178
+ }
179
+ &:hover {
180
+ span{
181
+ background: none;
182
+ }
183
+ }
184
+
185
+ //Btn
186
+ &:first-child {
187
+ @include label-large;
188
+ @include elevation1(var(--md-sys-color-primary-container));
189
+ color: var(--md-sys-color-on-primary-container);
190
+ line-height: 55px;
191
+ border-radius: 100px;
192
+ span{
193
+ background: none;
194
+ }
195
+ &:hover {
196
+ @include shape-small;
197
+ @include elevation5(var(--md-sys-color-primary-container));
198
+ span{
199
+ background: inherit;
200
+ }
201
+ }
202
+ }
203
+ }
204
+ .nav-links-active {
205
+ span{
206
+ background: none;
207
+ &::before {
208
+ background: none;
209
+ }
210
+ }
211
+ background: var(--md-sys-color-on-surface-variant-2);
212
+ &:hover {
213
+ background: var(--md-sys-color-on-surface-variant-4);
214
+ span{
215
+ background: none;
216
+ }
217
+ }
218
+ }
219
+ }
220
+
221
+ .nav-theme-toggle {
222
+ @include outline;
223
+ @include shape-extra-large;
224
+ display: block;
225
+ width: auto;
226
+ margin-left: auto;
227
+ margin-right: auto;
228
+ padding: 12px 12px 1px 12px;
229
+ height: 27px;
230
+ padding-bottom: 12px;
231
+ .toggle {
232
+ display: flex;
233
+ align-items: center;
234
+ }
235
+ p {
236
+ display: block;
237
+ line-height: normal;
238
+ margin-bottom: 0;
239
+ }
240
+ span{
241
+ height: auto;
242
+ width: auto;
243
+ border: 0px;
244
+ border-radius: 0px;
245
+ display: block;
246
+ margin-right: 8px;
247
+ }
248
+ &:hover {
249
+ span{
250
+ background: inherit;
251
+ }
252
+ background: var(--md-sys-color-on-surface-variant-2);
253
+ }
254
+ }
255
+ }
256
+ }
257
+ .site-top-bar {
258
+ position: fixed;
259
+ display: none;
260
+ flex-direction: row;
261
+ align-items: center;
262
+ padding: 8px 15px;
263
+ gap: 6px;
264
+ height: 64px;
265
+ width: 100%;
266
+ background: var(--md-sys-color-surface);
267
+ z-index: 3;
268
+ a,
269
+ label {
270
+ @include link(
271
+ var(--md-sys-color-on-surface),
272
+ inherit,
273
+ var(--md-sys-color-on-surface-variant-2)
274
+ );
275
+ @include shape-extra-large;
276
+ display: flex;
277
+ align-items: center;
278
+ }
279
+ #top-bar-checkbtn {
280
+ display: none;
281
+ }
282
+ @media (max-width: $defualt-width) {
283
+ display: flex;
284
+ }
285
+ @media (max-width: $mobile-width) {
286
+ .title {
287
+ display: none;
288
+ }
289
+ }
290
+ .title {
291
+ @include title-large;
292
+ margin: 0;
293
+ width: 250px;
294
+ height: 28px;
295
+ }
296
+ span ,img {
297
+ display: flex;
298
+ flex-direction: column;
299
+ justify-content: center;
300
+ align-items: center;
301
+ padding: 0px;
302
+ gap: 10px;
303
+ margin: 0;
304
+ width: 48px;
305
+ height: 48px;
306
+ user-select: none;
307
+ }
308
+ img {
309
+ width: 55px;
310
+ height: 48px;
311
+ }
312
+ }
313
+ .site-banner {
314
+ margin-bottom: 30px;
315
+ .banner-content {
316
+ padding: 120px 30px;
317
+ display: grid;
318
+ justify-items: center;
319
+ .banner-title {
320
+ @include display-large;
321
+ font-size: 80px;
322
+ }
323
+ .banner-description {
324
+ @include headline-small;
325
+ }
326
+ .btn {
327
+ @include duration-550;
328
+ @include easing-standard;
329
+ @include title-large;
330
+ width: 195px;
331
+ height: 82px;
332
+ padding: 0px;
333
+ }
334
+
335
+ @media (max-width: $defualt-width) {
336
+ padding: 30px;
337
+ .banner-title {
338
+ @include display-medium;
339
+ }
340
+ .banner-description {
341
+ @include title-large;
342
+ }
343
+ }
344
+ }
345
+ }
346
+ .site-animations-show {
347
+ transform: translateX(0rem);
348
+ }
349
+ .site-animations-hide {
350
+ @include remove-duration;
351
+ animation-duration: 3s;
352
+ animation-fill-mode: both;
353
+ animation-name: Drawer-exit;
354
+ }
355
+ .site-nav-scrim {
356
+ display: none;
357
+ background-color: none;
358
+ position: fixed;
359
+ top: 0px;
360
+ left: 0px;
361
+ width: 100%;
362
+ height: 100%;
363
+ z-index: 5;
364
+ animation-duration: 3s;
365
+ animation-fill-mode: both;
366
+ animation-name: opacitychange;
367
+ @media (max-width: $defualt-width) {
368
+ background-color: rgba(0, 0, 0, 0.32);
369
+ }
370
+ }
371
+
372
+ .site-post-list {
373
+ display: flex;
374
+ flex-direction: column;
375
+ row-gap: 50px;
376
+ column-gap: 20px;
377
+ h3 {
378
+ padding-left: 12px;
379
+ }
380
+
381
+ .site-post {
382
+ @include shape-extra-large;
383
+ @include link(inherit, inherit, var(--md-sys-color-secondary-container));
384
+ padding: 12px;
385
+ background: var(--md-sys-elevation-level1);
386
+ box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.3);
387
+ display: flex;
388
+ flex-direction: column;
389
+ gap: 12px;
390
+ &:hover {
391
+ background-color: var(--md-sys-color-on-surface);
392
+ background: var(--md-sys-color-on-surface-variant-2);
393
+ }
394
+
395
+ p {
396
+ // Make the description shorter
397
+ margin: 0;
398
+ overflow: hidden;
399
+ text-overflow: ellipsis;
400
+ display: -webkit-box;
401
+ -webkit-line-clamp: 3; // line height
402
+ -webkit-box-orient: vertical;
403
+ }
404
+ h1,
405
+ h2,
406
+ h3,
407
+ h4,
408
+ h5,
409
+ h6 {
410
+ @include body-medium;
411
+ margin: 0px;
412
+ }
413
+ .post-title {
414
+ @include headline-large;
415
+ }
416
+ .post-info {
417
+ display: flex;
418
+ justify-content: space-between;
419
+ align-items: center;
420
+ line-height: initial;
421
+ .post-info-pin {
422
+ @include tertiary;
423
+ @include shape-extra-large;
424
+ padding: 8px 10px 3px 10px;
425
+ span{
426
+ transform: rotate(45deg);
427
+ }
428
+ }
429
+ }
430
+ }
431
+ .pin {
432
+ @include outline;
433
+ background: var(--md-sys-color-surface);
434
+ }
435
+ .posts-container {
436
+ display: grid;
437
+ grid-template-columns: repeat(3, 1fr);
438
+ gap: 15px;
439
+ @media (max-width: $defualt-width) {
440
+ grid-template-columns: none;
441
+ }
442
+ }
443
+ @media (max-width: $mobile-width) {
444
+ width: auto;
445
+ }
446
+ }
447
+ .site-post-nav {
448
+ display: flex;
449
+ justify-content: space-evenly;
450
+ align-items: center;
451
+ padding: 31px 0px 31px 0px;
452
+ margin: 0px;
453
+ list-style: none;
454
+ a {
455
+ @include btn;
456
+ @include primary;
457
+ &:hover {
458
+ @include elevation5(var(--md-sys-color-primary));
459
+ @include shape-medium;
460
+ text-decoration: none;
461
+ }
462
+ }
463
+ .disable {
464
+ color: var(--md-sys-color-on-surface);
465
+ background-color: var(--md-sys-color-on-surface);
466
+ background: var(--md-sys-color-on-surface-variant-2);
467
+ &:hover {
468
+ color: var(--md-sys-color-on-surface);
469
+ background-color: var(--md-sys-color-on-surface);
470
+ background: var(--md-sys-color-on-surface-variant-2);
471
+ }
472
+ }
473
+ @media (max-width: $mobile-width) {
474
+ flex-direction: column;
475
+ gap: 20px;
476
+ }
477
+ }
478
+ .post-content {
479
+ display: grid;
480
+ grid-template-columns: 1fr 15em;
481
+ @media (max-width: 1309px) {
482
+ display: block;
483
+ }
484
+ }
485
+
486
+ .site-footer {
487
+ padding-top: 15px;
488
+ .footer-wrapper {
489
+ padding: 64px 40px;
490
+ display: flex;
491
+ flex-wrap: wrap;
492
+ gap: 12px;
493
+ justify-content: space-evenly;
494
+ }
495
+ .footer-links-container {
496
+ display: flex;
497
+ flex-direction: column;
498
+ gap: 12px;
499
+
500
+ a {
501
+ word-break: break-word;
502
+ &:hover {
503
+ text-decoration: underline;
504
+ }
505
+ }
506
+ }
507
+
508
+ .legal {
509
+ display: flex;
510
+ flex-wrap: wrap;
511
+ align-items: center;
512
+ gap: 24px;
513
+ padding-left: 12px;
514
+ a {
515
+ color: var(--md-sys-color-on-surface);
516
+ &:hover {
517
+ text-decoration: underline;
518
+ }
519
+
520
+ &:first-child {
521
+ font-weight: 700;
522
+ font-family: $md-ref-typeface-brand;
523
+ }
524
+ }
525
+
526
+ .theme-title {
527
+ @include shape-extra-large;
528
+ margin-left: auto;
529
+ margin-right: 12px;
530
+ padding: 12px;
531
+ background: var(--md-sys-elevation-level1);
532
+ display: flex;
533
+ gap: 10px;
534
+
535
+ &:hover {
536
+ p {
537
+ display: block;
538
+ }
539
+ }
540
+ span{
541
+ color: var(--md-sys-color-primary);
542
+ }
543
+ p {
544
+ margin: 0;
545
+ display: none;
546
+ }
547
+ }
548
+ }
549
+ }
550
+
551
+ .post-header {
552
+ margin-bottom: 50px;
553
+ .post-info-date {
554
+ display: flex;
555
+ flex-direction: row;
556
+ justify-content: space-between;
557
+ align-items: center;
558
+ user-select: none;
559
+ }
560
+ .post-meta {
561
+ @include body-small;
562
+ display: block;
563
+ }
564
+ .post-title {
565
+ @include display-large;
566
+ margin: 0;
567
+ font-size: 5.25rem;
568
+ line-height: 5.75rem;
569
+ }
570
+ .post-author {
571
+ @include body-large;
572
+ margin-left: 12px;
573
+ }
574
+ .post-change-date {
575
+ display: flex;
576
+ flex-direction: row;
577
+ justify-content: center;
578
+ align-items: center;
579
+ color: var(--md-sys-color-primary);
580
+ }
581
+ }
@@ -0,0 +1,156 @@
1
+ :root {
2
+ --md-sys-color-primary: #006e2f;
3
+ --md-sys-color-on-primary: #ffffff;
4
+
5
+ --md-sys-color-primary-container: #85fb9c;
6
+ --md-sys-color-on-primary-container: #002109;
7
+
8
+ --md-sys-color-secondary: #006a65;
9
+ --md-sys-color-on-secondary: #ffffff;
10
+
11
+ --md-sys-color-secondary-container: #70f7ee;
12
+ --md-sys-color-on-secondary-container: #00201e;
13
+
14
+ --md-sys-color-tertiary: #00696f;
15
+ --md-sys-color-on-tertiary: #ffffff;
16
+
17
+ --md-sys-color-tertiary-container: #6ff6ff;
18
+ --md-sys-color-on-tertiary-container: #002022;
19
+
20
+ --md-sys-color-error: #ba1a1a;
21
+ --md-sys-color-error-container: #ffdad6;
22
+
23
+ --md-sys-color-on-error: #ffffff;
24
+ --md-sys-color-on-error-container: #410002;
25
+
26
+ --md-sys-color-background: #fcfdf7;
27
+ --md-sys-color-on-background: #1a1c19;
28
+
29
+ --md-sys-color-surface: #fcfdf7;
30
+ --md-sys-color-on-surface: #1a1c19;
31
+
32
+ --md-sys-color-surface-variant: #dde5da;
33
+ --md-sys-color-on-surface-variant: #414941;
34
+
35
+ --md-sys-color-outline: #727970;
36
+ --md-sys-color-inverse-on-surface: #f0f1ec;
37
+
38
+ --md-sys-color-inverse-surface: #2e312e;
39
+ --md-sys-color-inverse-primary: #69de82;
40
+
41
+ --md-sys-color-shadow: #000000;
42
+ --md-sys-color-surface-tint: #006e2f;
43
+ --md-sys-color-surface-tint-color: #006e2f;
44
+
45
+ --md-sys-color-tip: #006d44;
46
+ --md-sys-color-on-tip: #ffffff;
47
+ --md-sys-color-tip-container: #75fbb6;
48
+ --md-sys-color-on-tip-container: #002111;
49
+
50
+ --md-sys-color-info: #006875;
51
+ --md-sys-color-on-info: #ffffff;
52
+ --md-sys-color-info-container: #9bf0ff;
53
+ --md-sys-color-on-info-container: #001f24;
54
+
55
+ --md-sys-color-warning: #7d5700;
56
+ --md-sys-color-on-warning: #ffffff;
57
+ --md-sys-color-warning-container: #ffdeaa;
58
+ --md-sys-color-on-warning-container: #271900;
59
+
60
+ --md-sys-color-danger: #bf0800;
61
+ --md-sys-color-on-danger: #ffffff;
62
+ --md-sys-color-danger-container: #ffdad4;
63
+ --md-sys-color-on-danger-container: #400100;
64
+
65
+ --md-sys-elevation-level1: linear-gradient(0deg, rgba(103, 80, 164, 0.05), rgba(103, 80, 164, 0.05)), var(--md-sys-color-surface);
66
+ --md-sys-elevation-level2: linear-gradient(0deg, rgba(103, 80, 164, 0.08), rgba(103, 80, 164, 0.08)), var(--md-sys-color-surface);
67
+ --md-sys-elevation-level3: linear-gradient(0deg, rgba(103, 80, 164, 0.11), rgba(103, 80, 164, 0.11)), var(--md-sys-color-surface);
68
+ --md-sys-elevation-level4: linear-gradient(0deg, rgba(103, 80, 164, 0.12), rgba(103, 80, 164, 0.12)), var(--md-sys-color-surface);
69
+ --md-sys-elevation-level5: linear-gradient(0deg, rgba(103, 80, 164, 0.14), rgba(103, 80, 164, 0.14)), var(--md-sys-color-surface);
70
+
71
+ --md-sys-color-on-surface-variant-2: linear-gradient(0deg,rgba(68,71,70,.15),rgba(68,71,70,.15)), var(--md-sys-color-surface);
72
+ --md-sys-color-on-surface-variant-4: linear-gradient(0deg,rgba(68,71,70,.18),rgba(68,71,70,.18)), var(--md-sys-color-surface);
73
+
74
+ @import "highlight-light.scss";
75
+ }
76
+
77
+ body.dark {
78
+ --md-sys-color-primary: #69de82;
79
+ --md-sys-color-on-primary: #003915;
80
+
81
+ --md-sys-color-primary-container: #005322;
82
+ --md-sys-color-on-primary-container: #85fb9c;
83
+
84
+ --md-sys-color-secondary: #4fdad2;
85
+ --md-sys-color-on-secondary: #003734;
86
+
87
+ --md-sys-color-secondary-container: #00504c;
88
+ --md-sys-color-on-secondary-container: #70f7ee;
89
+
90
+ --md-sys-color-tertiary: #4cd9e2;
91
+ --md-sys-color-on-tertiary: #00373a;
92
+
93
+ --md-sys-color-tertiary-container: #004f53;
94
+ --md-sys-color-on-tertiary-container: #6ff6ff;
95
+
96
+ --md-sys-color-error: #ffb4ab;
97
+ --md-sys-color-error-container: #93000a;
98
+
99
+ --md-sys-color-on-error: #690005;
100
+ --md-sys-color-on-error-container: #ffdad6;
101
+
102
+ --md-sys-color-background: #1a1c19;
103
+ --md-sys-color-on-background: #e2e3dd;
104
+
105
+ --md-sys-color-surface: #1a1c19;
106
+ --md-sys-color-on-surface: #e2e3dd;
107
+
108
+ --md-sys-color-surface-variant: #414941;
109
+ --md-sys-color-on-surface-variant: #c1c9be;
110
+
111
+ --md-sys-color-outline: #8b9389;
112
+ --md-sys-color-inverse-on-surface: #1a1c19;
113
+
114
+ --md-sys-color-inverse-surface: #e2e3dd;
115
+ --md-sys-color-inverse-primary: #006e2f;
116
+
117
+ --md-sys-color-shadow: #000000;
118
+ --md-sys-color-surface-tint: #69de82;
119
+
120
+ --md-sys-color-surface-tint-color: #69de82;
121
+
122
+ --md-sys-color-tip: #55de9b;
123
+ --md-sys-color-on-tip: #003921;
124
+ --md-sys-color-tip-container: #005232;
125
+ --md-sys-color-on-tip-container: #75fbb6;
126
+
127
+ --md-sys-color-info: #50d8ec;
128
+ --md-sys-color-on-info: #00363d;
129
+ --md-sys-color-info-container: #004f58;
130
+ --md-sys-color-on-info-container: #9bf0ff;
131
+
132
+ --md-sys-color-warning: #ffba2c;
133
+ --md-sys-color-on-warning: #422c00;
134
+ --md-sys-color-warning-container: #5f4100;
135
+ --md-sys-color-on-warning-container: #ffdeaa;
136
+
137
+ --md-sys-color-danger: #ffb4a7;
138
+ --md-sys-color-on-danger: #680200;
139
+ --md-sys-color-danger-container: #920500;
140
+ --md-sys-color-on-danger-container: #ffdad4;
141
+
142
+ --md-sys-elevation-level1: linear-gradient(0deg, rgba(103, 80, 164, 0.05), rgba(103, 80, 164, 0.05)), var(--md-sys-color-surface);
143
+ --md-sys-elevation-level2: linear-gradient(0deg, rgba(103, 80, 164, 0.08), rgba(103, 80, 164, 0.08)), var(--md-sys-color-surface);
144
+ --md-sys-elevation-level3: linear-gradient(0deg, rgba(103, 80, 164, 0.11), rgba(103, 80, 164, 0.11)), var(--md-sys-color-surface);
145
+ --md-sys-elevation-level4: linear-gradient(0deg, rgba(103, 80, 164, 0.12), rgba(103, 80, 164, 0.12)), var(--md-sys-color-surface);
146
+ --md-sys-elevation-level5: linear-gradient(0deg, rgba(103, 80, 164, 0.14), rgba(103, 80, 164, 0.14)), var(--md-sys-color-surface);
147
+
148
+ --md-sys-color-on-surface-variant-2: linear-gradient(0deg,rgba(68,71,70,.15),rgba(68,71,70,.15));
149
+ --md-sys-color-on-surface-variant-4: linear-gradient(0deg,rgba(68,71,70,.18),rgba(68,71,70,.18));
150
+
151
+ @import "highlight-dark.scss";
152
+ }
153
+ $md-sys-color-on-surface-2: linear-gradient(0deg,hsla(0, 0%, 89%, 0.08),hsla(0,0%,89%,.08)), var(--md-sys-color-secondary-container);
154
+ $md-sys-color-on-surface-4: linear-gradient(0deg,hsla(0,0%,89%,.12),hsla(0,0%,89%,.12)), var(--md-sys-color-secondary-container);
155
+
156
+ @import "custom/styles_variables"