jekyll-theme-dec-terminal 0.1.0 → 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/_sass/{index.scss → _dec-terminal.scss} +4 -2
- data/_sass/layouts/_index.scss +6 -0
- data/_sass/themes/_index.scss +12 -0
- data/_sass/themes/dark/_index.scss +29 -0
- data/_sass/themes/dark/primitives/_colors.scss +83 -0
- data/_sass/themes/light/_index.scss +29 -0
- data/_sass/themes/light/primitives/_colors.scss +70 -0
- data/assets/main.scss +1 -2
- metadata +15 -15
- data/_sass/layouts/index.scss +0 -6
- data/_sass/themes/dark/_colors.scss +0 -70
- data/_sass/themes/dark/theme.scss +0 -33
- data/_sass/themes/index.scss +0 -7
- data/_sass/themes/light/_colors.scss +0 -70
- data/_sass/themes/light/theme.scss +0 -33
- /data/_sass/layouts/{container.scss → _container.scss} +0 -0
- /data/_sass/layouts/{page.scss → _page.scss} +0 -0
- /data/_sass/layouts/{post.scss → _post.scss} +0 -0
- /data/_sass/layouts/{posts.scss → _posts.scss} +0 -0
- /data/_sass/themes/dark/{rogue_highlight.css → third-party/rogue_highlight.css} +0 -0
- /data/_sass/themes/light/{rogue_highlight.css → third-party/rogue_highlight.css} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebfddc245c2753f648fa3a329c1abffdc21501d5b8fb279171166186020a558a
|
4
|
+
data.tar.gz: 26cd1a53288c893f5100a4eb61a2b29bf3c2d23dcfaaf022678edcb6f935362c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8185273fe8e6c774386504c0e7fa4d3f3a813cd436886aa9b298d09af5dd3e5dae882d5008492c942806bfebc4d1aae3630bf6e8f31ac64c38121a8e85e1fbc2
|
7
|
+
data.tar.gz: ad8313b81ce2e8798b43907226b8aa017ec38264c9ce92a90a67d171be8274406d82709402515b4a77d39e95bb4cf9afc488f897d368613c3b93be0c57edd2ce
|
@@ -0,0 +1,29 @@
|
|
1
|
+
@use "sass:meta";
|
2
|
+
|
3
|
+
@use "./primitives/colors";
|
4
|
+
|
5
|
+
@mixin theme {
|
6
|
+
@include meta.load-css("./third-party/rogue_highlight");
|
7
|
+
|
8
|
+
--gap-tiny: 0.2rem;
|
9
|
+
--gap-small: 0.6rem;
|
10
|
+
--gap-medium: 1rem;
|
11
|
+
--gap-large: 1.6rem;
|
12
|
+
--gap-xlarge: 2.4rem;
|
13
|
+
|
14
|
+
--color-brand: #{colors.$rose-lightest};
|
15
|
+
--color-flair: #{colors.$red-lightest};
|
16
|
+
--color-highlight: #{colors.$emerald-lightest};
|
17
|
+
--color-subtle: #{colors.$white-darkest};
|
18
|
+
|
19
|
+
--text-color: #{colors.$white};
|
20
|
+
--text-size-tiny: 0.6rem;
|
21
|
+
--text-size-small: 0.8rem;
|
22
|
+
--text-size-medium: 1rem;
|
23
|
+
--text-size-large: 1.2rem;
|
24
|
+
--text-size-xlarge: 1.4rem;
|
25
|
+
|
26
|
+
--background-color: #{colors.$black-darkest};
|
27
|
+
--surface-color: #{colors.$black-darker};
|
28
|
+
--raised-color: #{colors.$black};
|
29
|
+
}
|
@@ -0,0 +1,83 @@
|
|
1
|
+
$red-lightest: #FF8D80;
|
2
|
+
$red-lighter: #FF5F4D;
|
3
|
+
$red: #FF311A;
|
4
|
+
$red-darker: #C02D1D;
|
5
|
+
$red-darkest: #80241A;
|
6
|
+
|
7
|
+
$orange-lightest: #FFCD80;
|
8
|
+
$orange-lighter: #FFB84D;
|
9
|
+
$orange: #FFA41A;
|
10
|
+
$orange-darker: #C07F1D;
|
11
|
+
$orange-darkest: #80571A;
|
12
|
+
|
13
|
+
$yellow-lightest: #F3FF80;
|
14
|
+
$yellow-lighter: #EEFF4D;
|
15
|
+
$yellow: #E9FF1A;
|
16
|
+
$yellow-darker: #B0C01D;
|
17
|
+
$yellow-darkest: #76801A;
|
18
|
+
|
19
|
+
$chartreuse-lightest: #B3FF80;
|
20
|
+
$chartreuse-lighter: #94FF4D;
|
21
|
+
$chartreuse: #76FF1A;
|
22
|
+
$chartreuse-darker: #5EC01D;
|
23
|
+
$chartreuse-darkest: #43801A;
|
24
|
+
|
25
|
+
$green-lightest: #80FF8D;
|
26
|
+
$green-lighter: #4DFF5F;
|
27
|
+
$green: #1AFF31;
|
28
|
+
$green-darker: #1DC02D;
|
29
|
+
$green-darkest: #1A8024;
|
30
|
+
|
31
|
+
$emerald-lightest: #80FFCD;
|
32
|
+
$emerald-lighter: #4DFFB8;
|
33
|
+
$emerald: #1AFFA4;
|
34
|
+
$emerald-darker: #1DC07F;
|
35
|
+
$emerald-darkest: #1A8057;
|
36
|
+
|
37
|
+
$cyan-lightest: #80F3FF;
|
38
|
+
$cyan-lighter: #4DEEFF;
|
39
|
+
$cyan: #1AE9FF;
|
40
|
+
$cyan-darker: #1DB0C0;
|
41
|
+
$cyan-darkest: #1A7680;
|
42
|
+
|
43
|
+
$azure-lightest: #80B3FF;
|
44
|
+
$azure-lighter: #4D94FF;
|
45
|
+
$azure: #1A76FF;
|
46
|
+
$azure-darker: #1D5EC0;
|
47
|
+
$azure-darkest: #1A4380;
|
48
|
+
|
49
|
+
$blue-lightest: #8D80FF;
|
50
|
+
$blue-lighter: #5F4DFF;
|
51
|
+
$blue: #311AFF;
|
52
|
+
$blue-darker: #2D1DC0;
|
53
|
+
$blue-darkest: #241A80;
|
54
|
+
|
55
|
+
$violet-lightest: #CD80FF;
|
56
|
+
$violet-lighter: #B84DFF;
|
57
|
+
$violet: #A41AFF;
|
58
|
+
$violet-darker: #7F1DC0;
|
59
|
+
$violet-darkest: #571A80;
|
60
|
+
|
61
|
+
$magenta-lightest: #FF80F3;
|
62
|
+
$magenta-lighter: #FF4DEE;
|
63
|
+
$magenta: #FF1AE9;
|
64
|
+
$magenta-darker: #C01DB0;
|
65
|
+
$magenta-darkest: #801A76;
|
66
|
+
|
67
|
+
$rose-lightest: #FF80B3;
|
68
|
+
$rose-lighter: #FF4D94;
|
69
|
+
$rose: #FF1A76;
|
70
|
+
$rose-darker: #C01D5E;
|
71
|
+
$rose-darkest: #801A43;
|
72
|
+
|
73
|
+
$white-lightest: #E6E6E6;
|
74
|
+
$white-lighter: #CDCDCD;
|
75
|
+
$white: #B3B3B3;
|
76
|
+
$white-darker: #9A9A9A;
|
77
|
+
$white-darkest: #808080;
|
78
|
+
|
79
|
+
$black-lightest: #808080;
|
80
|
+
$black-lighter: #666666;
|
81
|
+
$black: #4D4D4D;
|
82
|
+
$black-darker: #333333;
|
83
|
+
$black-darkest: #1A1A1A;
|
@@ -0,0 +1,29 @@
|
|
1
|
+
@use "sass:meta";
|
2
|
+
|
3
|
+
@use "./primitives/colors";
|
4
|
+
|
5
|
+
@mixin theme {
|
6
|
+
@include meta.load-css("./third-party/rogue_highlight");
|
7
|
+
|
8
|
+
--gap-tiny: 0.2rem;
|
9
|
+
--gap-small: 0.6rem;
|
10
|
+
--gap-medium: 1rem;
|
11
|
+
--gap-large: 1.6rem;
|
12
|
+
--gap-xlarge: 2.4rem;
|
13
|
+
|
14
|
+
--color-brand: #{colors.$rose-darker};
|
15
|
+
--color-flair: #{colors.$red-darker};
|
16
|
+
--color-highlight: #{colors.$emerald-darkest};
|
17
|
+
--color-subtle: #{colors.$black-lightest};
|
18
|
+
|
19
|
+
--text-color: #{colors.$black};
|
20
|
+
--text-size-tiny: 0.6rem;
|
21
|
+
--text-size-small: 0.8rem;
|
22
|
+
--text-size-medium: 1rem;
|
23
|
+
--text-size-large: 1.2rem;
|
24
|
+
--text-size-xlarge: 1.4rem;
|
25
|
+
|
26
|
+
--background-color: #{colors.$white-lightest};
|
27
|
+
--surface-color: #{colors.$white-lighter};
|
28
|
+
--raised-color: #{colors.$white};
|
29
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
$red-lightest: #FF8D80;
|
2
|
+
$red-lighter: #FF5F4D;
|
3
|
+
$red: #FF311A;
|
4
|
+
$red-darker: #C02D1D;
|
5
|
+
$red-darkest: #80241A;
|
6
|
+
$orange-lightest: #FFCD80;
|
7
|
+
$orange-lighter: #FFB84D;
|
8
|
+
$orange: #FFA41A;
|
9
|
+
$orange-darker: #C07F1D;
|
10
|
+
$orange-darkest: #80571A;
|
11
|
+
$yellow-lightest: #F3FF80;
|
12
|
+
$yellow-lighter: #EEFF4D;
|
13
|
+
$yellow: #E9FF1A;
|
14
|
+
$yellow-darker: #B0C01D;
|
15
|
+
$yellow-darkest: #76801A;
|
16
|
+
$chartreuse-lightest: #B3FF80;
|
17
|
+
$chartreuse-lighter: #94FF4D;
|
18
|
+
$chartreuse: #76FF1A;
|
19
|
+
$chartreuse-darker: #5EC01D;
|
20
|
+
$chartreuse-darkest: #43801A;
|
21
|
+
$green-lightest: #80FF8D;
|
22
|
+
$green-lighter: #4DFF5F;
|
23
|
+
$green: #1AFF31;
|
24
|
+
$green-darker: #1DC02D;
|
25
|
+
$green-darkest: #1A8024;
|
26
|
+
$emerald-lightest: #80FFCD;
|
27
|
+
$emerald-lighter: #4DFFB8;
|
28
|
+
$emerald: #1AFFA4;
|
29
|
+
$emerald-darker: #1DC07F;
|
30
|
+
$emerald-darkest: #1A8057;
|
31
|
+
$cyan-lightest: #80F3FF;
|
32
|
+
$cyan-lighter: #4DEEFF;
|
33
|
+
$cyan: #1AE9FF;
|
34
|
+
$cyan-darker: #1DB0C0;
|
35
|
+
$cyan-darkest: #1A7680;
|
36
|
+
$azure-lightest: #80B3FF;
|
37
|
+
$azure-lighter: #4D94FF;
|
38
|
+
$azure: #1A76FF;
|
39
|
+
$azure-darker: #1D5EC0;
|
40
|
+
$azure-darkest: #1A4380;
|
41
|
+
$blue-lightest: #8D80FF;
|
42
|
+
$blue-lighter: #5F4DFF;
|
43
|
+
$blue: #311AFF;
|
44
|
+
$blue-darker: #2D1DC0;
|
45
|
+
$blue-darkest: #241A80;
|
46
|
+
$violet-lightest: #CD80FF;
|
47
|
+
$violet-lighter: #B84DFF;
|
48
|
+
$violet: #A41AFF;
|
49
|
+
$violet-darker: #7F1DC0;
|
50
|
+
$violet-darkest: #571A80;
|
51
|
+
$magenta-lightest: #FF80F3;
|
52
|
+
$magenta-lighter: #FF4DEE;
|
53
|
+
$magenta: #FF1AE9;
|
54
|
+
$magenta-darker: #C01DB0;
|
55
|
+
$magenta-darkest: #801A76;
|
56
|
+
$rose-lightest: #FF80B3;
|
57
|
+
$rose-lighter: #FF4D94;
|
58
|
+
$rose: #FF1A76;
|
59
|
+
$rose-darker: #C01D5E;
|
60
|
+
$rose-darkest: #801A43;
|
61
|
+
$white-lightest: #E6E6E6;
|
62
|
+
$white-lighter: #CDCDCD;
|
63
|
+
$white: #B3B3B3;
|
64
|
+
$white-darker: #9A9A9A;
|
65
|
+
$white-darkest: #808080;
|
66
|
+
$black-lightest: #808080;
|
67
|
+
$black-lighter: #666666;
|
68
|
+
$black: #4D4D4D;
|
69
|
+
$black-darker: #333333;
|
70
|
+
$black-darkest: #1A1A1A;
|
data/assets/main.scss
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-dec-terminal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dec Murphy
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-06-
|
10
|
+
date: 2025-06-30 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: jekyll
|
@@ -37,19 +37,19 @@ files:
|
|
37
37
|
- _layouts/page.html
|
38
38
|
- _layouts/post.html
|
39
39
|
- _layouts/posts.html
|
40
|
-
- _sass/
|
41
|
-
- _sass/layouts/
|
42
|
-
- _sass/layouts/
|
43
|
-
- _sass/layouts/
|
44
|
-
- _sass/layouts/
|
45
|
-
- _sass/layouts/
|
46
|
-
- _sass/themes/
|
47
|
-
- _sass/themes/dark/
|
48
|
-
- _sass/themes/dark/
|
49
|
-
- _sass/themes/
|
50
|
-
- _sass/themes/light/
|
51
|
-
- _sass/themes/light/
|
52
|
-
- _sass/themes/light/
|
40
|
+
- _sass/_dec-terminal.scss
|
41
|
+
- _sass/layouts/_container.scss
|
42
|
+
- _sass/layouts/_index.scss
|
43
|
+
- _sass/layouts/_page.scss
|
44
|
+
- _sass/layouts/_post.scss
|
45
|
+
- _sass/layouts/_posts.scss
|
46
|
+
- _sass/themes/_index.scss
|
47
|
+
- _sass/themes/dark/_index.scss
|
48
|
+
- _sass/themes/dark/primitives/_colors.scss
|
49
|
+
- _sass/themes/dark/third-party/rogue_highlight.css
|
50
|
+
- _sass/themes/light/_index.scss
|
51
|
+
- _sass/themes/light/primitives/_colors.scss
|
52
|
+
- _sass/themes/light/third-party/rogue_highlight.css
|
53
53
|
- assets/main.js
|
54
54
|
- assets/main.scss
|
55
55
|
homepage: https://github.com/okdecm/jekyll-theme-dec-terminal
|
data/_sass/layouts/index.scss
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
$color-red-lightest: #FF8D80;
|
2
|
-
$color-red-lighter: #FF5F4D;
|
3
|
-
$color-red: #FF311A;
|
4
|
-
$color-red-darker: #C02D1D;
|
5
|
-
$color-red-darkest: #80241A;
|
6
|
-
$color-orange-lightest: #FFCD80;
|
7
|
-
$color-orange-lighter: #FFB84D;
|
8
|
-
$color-orange: #FFA41A;
|
9
|
-
$color-orange-darker: #C07F1D;
|
10
|
-
$color-orange-darkest: #80571A;
|
11
|
-
$color-yellow-lightest: #F3FF80;
|
12
|
-
$color-yellow-lighter: #EEFF4D;
|
13
|
-
$color-yellow: #E9FF1A;
|
14
|
-
$color-yellow-darker: #B0C01D;
|
15
|
-
$color-yellow-darkest: #76801A;
|
16
|
-
$color-chartreuse-lightest: #B3FF80;
|
17
|
-
$color-chartreuse-lighter: #94FF4D;
|
18
|
-
$color-chartreuse: #76FF1A;
|
19
|
-
$color-chartreuse-darker: #5EC01D;
|
20
|
-
$color-chartreuse-darkest: #43801A;
|
21
|
-
$color-green-lightest: #80FF8D;
|
22
|
-
$color-green-lighter: #4DFF5F;
|
23
|
-
$color-green: #1AFF31;
|
24
|
-
$color-green-darker: #1DC02D;
|
25
|
-
$color-green-darkest: #1A8024;
|
26
|
-
$color-emerald-lightest: #80FFCD;
|
27
|
-
$color-emerald-lighter: #4DFFB8;
|
28
|
-
$color-emerald: #1AFFA4;
|
29
|
-
$color-emerald-darker: #1DC07F;
|
30
|
-
$color-emerald-darkest: #1A8057;
|
31
|
-
$color-cyan-lightest: #80F3FF;
|
32
|
-
$color-cyan-lighter: #4DEEFF;
|
33
|
-
$color-cyan: #1AE9FF;
|
34
|
-
$color-cyan-darker: #1DB0C0;
|
35
|
-
$color-cyan-darkest: #1A7680;
|
36
|
-
$color-azure-lightest: #80B3FF;
|
37
|
-
$color-azure-lighter: #4D94FF;
|
38
|
-
$color-azure: #1A76FF;
|
39
|
-
$color-azure-darker: #1D5EC0;
|
40
|
-
$color-azure-darkest: #1A4380;
|
41
|
-
$color-blue-lightest: #8D80FF;
|
42
|
-
$color-blue-lighter: #5F4DFF;
|
43
|
-
$color-blue: #311AFF;
|
44
|
-
$color-blue-darker: #2D1DC0;
|
45
|
-
$color-blue-darkest: #241A80;
|
46
|
-
$color-violet-lightest: #CD80FF;
|
47
|
-
$color-violet-lighter: #B84DFF;
|
48
|
-
$color-violet: #A41AFF;
|
49
|
-
$color-violet-darker: #7F1DC0;
|
50
|
-
$color-violet-darkest: #571A80;
|
51
|
-
$color-magenta-lightest: #FF80F3;
|
52
|
-
$color-magenta-lighter: #FF4DEE;
|
53
|
-
$color-magenta: #FF1AE9;
|
54
|
-
$color-magenta-darker: #C01DB0;
|
55
|
-
$color-magenta-darkest: #801A76;
|
56
|
-
$color-rose-lightest: #FF80B3;
|
57
|
-
$color-rose-lighter: #FF4D94;
|
58
|
-
$color-rose: #FF1A76;
|
59
|
-
$color-rose-darker: #C01D5E;
|
60
|
-
$color-rose-darkest: #801A43;
|
61
|
-
$color-white-lightest: #E6E6E6;
|
62
|
-
$color-white-lighter: #CDCDCD;
|
63
|
-
$color-white: #B3B3B3;
|
64
|
-
$color-white-darker: #9A9A9A;
|
65
|
-
$color-white-darkest: #808080;
|
66
|
-
$color-black-lightest: #808080;
|
67
|
-
$color-black-lighter: #666666;
|
68
|
-
$color-black: #4D4D4D;
|
69
|
-
$color-black-darker: #333333;
|
70
|
-
$color-black-darkest: #1A1A1A;
|
@@ -1,33 +0,0 @@
|
|
1
|
-
@import "./colors";
|
2
|
-
|
3
|
-
@import "./rogue_highlight";
|
4
|
-
|
5
|
-
$gap-tiny: 0.2rem;
|
6
|
-
$gap-small: 0.6rem;
|
7
|
-
$gap-medium: 1rem;
|
8
|
-
$gap-large: 1.6rem;
|
9
|
-
$gap-xlarge: 2.4rem;
|
10
|
-
|
11
|
-
& {
|
12
|
-
--color-brand: #{$color-rose-lightest};
|
13
|
-
--color-flair: #{$color-red-lightest};
|
14
|
-
--color-highlight: #{$color-emerald-lightest};
|
15
|
-
--color-subtle: #{$color-white-darkest};
|
16
|
-
|
17
|
-
--text-color: #{$color-white};
|
18
|
-
--text-size-tiny: 0.6rem;
|
19
|
-
--text-size-small: 0.8rem;
|
20
|
-
--text-size-medium: 1rem;
|
21
|
-
--text-size-large: 1.2rem;
|
22
|
-
--text-size-xlarge: 1.4rem;
|
23
|
-
|
24
|
-
--background-color: #{$color-black-darkest};
|
25
|
-
|
26
|
-
--surface-color: #{$color-black-darker};
|
27
|
-
|
28
|
-
--gap-tiny: #{$gap-tiny};
|
29
|
-
--gap-small: #{$gap-small};
|
30
|
-
--gap-medium: #{$gap-medium};
|
31
|
-
--gap-large: #{$gap-large};
|
32
|
-
--gap-xlarge: #{$gap-xlarge};
|
33
|
-
}
|
data/_sass/themes/index.scss
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
$color-red-lightest: #FF8D80;
|
2
|
-
$color-red-lighter: #FF5F4D;
|
3
|
-
$color-red: #FF311A;
|
4
|
-
$color-red-darker: #C02D1D;
|
5
|
-
$color-red-darkest: #80241A;
|
6
|
-
$color-orange-lightest: #FFCD80;
|
7
|
-
$color-orange-lighter: #FFB84D;
|
8
|
-
$color-orange: #FFA41A;
|
9
|
-
$color-orange-darker: #C07F1D;
|
10
|
-
$color-orange-darkest: #80571A;
|
11
|
-
$color-yellow-lightest: #F3FF80;
|
12
|
-
$color-yellow-lighter: #EEFF4D;
|
13
|
-
$color-yellow: #E9FF1A;
|
14
|
-
$color-yellow-darker: #B0C01D;
|
15
|
-
$color-yellow-darkest: #76801A;
|
16
|
-
$color-chartreuse-lightest: #B3FF80;
|
17
|
-
$color-chartreuse-lighter: #94FF4D;
|
18
|
-
$color-chartreuse: #76FF1A;
|
19
|
-
$color-chartreuse-darker: #5EC01D;
|
20
|
-
$color-chartreuse-darkest: #43801A;
|
21
|
-
$color-green-lightest: #80FF8D;
|
22
|
-
$color-green-lighter: #4DFF5F;
|
23
|
-
$color-green: #1AFF31;
|
24
|
-
$color-green-darker: #1DC02D;
|
25
|
-
$color-green-darkest: #1A8024;
|
26
|
-
$color-emerald-lightest: #80FFCD;
|
27
|
-
$color-emerald-lighter: #4DFFB8;
|
28
|
-
$color-emerald: #1AFFA4;
|
29
|
-
$color-emerald-darker: #1DC07F;
|
30
|
-
$color-emerald-darkest: #1A8057;
|
31
|
-
$color-cyan-lightest: #80F3FF;
|
32
|
-
$color-cyan-lighter: #4DEEFF;
|
33
|
-
$color-cyan: #1AE9FF;
|
34
|
-
$color-cyan-darker: #1DB0C0;
|
35
|
-
$color-cyan-darkest: #1A7680;
|
36
|
-
$color-azure-lightest: #80B3FF;
|
37
|
-
$color-azure-lighter: #4D94FF;
|
38
|
-
$color-azure: #1A76FF;
|
39
|
-
$color-azure-darker: #1D5EC0;
|
40
|
-
$color-azure-darkest: #1A4380;
|
41
|
-
$color-blue-lightest: #8D80FF;
|
42
|
-
$color-blue-lighter: #5F4DFF;
|
43
|
-
$color-blue: #311AFF;
|
44
|
-
$color-blue-darker: #2D1DC0;
|
45
|
-
$color-blue-darkest: #241A80;
|
46
|
-
$color-violet-lightest: #CD80FF;
|
47
|
-
$color-violet-lighter: #B84DFF;
|
48
|
-
$color-violet: #A41AFF;
|
49
|
-
$color-violet-darker: #7F1DC0;
|
50
|
-
$color-violet-darkest: #571A80;
|
51
|
-
$color-magenta-lightest: #FF80F3;
|
52
|
-
$color-magenta-lighter: #FF4DEE;
|
53
|
-
$color-magenta: #FF1AE9;
|
54
|
-
$color-magenta-darker: #C01DB0;
|
55
|
-
$color-magenta-darkest: #801A76;
|
56
|
-
$color-rose-lightest: #FF80B3;
|
57
|
-
$color-rose-lighter: #FF4D94;
|
58
|
-
$color-rose: #FF1A76;
|
59
|
-
$color-rose-darker: #C01D5E;
|
60
|
-
$color-rose-darkest: #801A43;
|
61
|
-
$color-white-lightest: #E6E6E6;
|
62
|
-
$color-white-lighter: #CDCDCD;
|
63
|
-
$color-white: #B3B3B3;
|
64
|
-
$color-white-darker: #9A9A9A;
|
65
|
-
$color-white-darkest: #808080;
|
66
|
-
$color-black-lightest: #808080;
|
67
|
-
$color-black-lighter: #666666;
|
68
|
-
$color-black: #4D4D4D;
|
69
|
-
$color-black-darker: #333333;
|
70
|
-
$color-black-darkest: #1A1A1A;
|
@@ -1,33 +0,0 @@
|
|
1
|
-
@import "./colors";
|
2
|
-
|
3
|
-
@import "./rogue_highlight";
|
4
|
-
|
5
|
-
$gap-tiny: 0.2rem;
|
6
|
-
$gap-small: 0.6rem;
|
7
|
-
$gap-medium: 1rem;
|
8
|
-
$gap-large: 1.6rem;
|
9
|
-
$gap-xlarge: 2.4rem;
|
10
|
-
|
11
|
-
& {
|
12
|
-
--color-brand: #{$color-rose-darkest};
|
13
|
-
--color-flair: #{$color-red-darkest};
|
14
|
-
--color-highlight: #{$color-emerald-darkest};
|
15
|
-
--color-subtle: #{$color-black-lightest};
|
16
|
-
|
17
|
-
--text-color: #{$color-black};
|
18
|
-
--text-size-tiny: 0.6rem;
|
19
|
-
--text-size-small: 0.8rem;
|
20
|
-
--text-size-medium: 1rem;
|
21
|
-
--text-size-large: 1.2rem;
|
22
|
-
--text-size-xlarge: 1.4rem;
|
23
|
-
|
24
|
-
--background-color: #{$color-white-lightest};
|
25
|
-
|
26
|
-
--surface-color: #{$color-white-lighter};
|
27
|
-
|
28
|
-
--gap-tiny: #{$gap-tiny};
|
29
|
-
--gap-small: #{$gap-small};
|
30
|
-
--gap-medium: #{$gap-medium};
|
31
|
-
--gap-large: #{$gap-large};
|
32
|
-
--gap-xlarge: #{$gap-xlarge};
|
33
|
-
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|