jekyll-theme-dec-terminal 0.1.0 → 0.1.2
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/_config.yml +3 -0
- data/_includes/footer.html +1 -1
- data/_layouts/page.html +27 -25
- data/_layouts/posts.html +9 -7
- data/_sass/{index.scss → _dec-terminal.scss} +7 -10
- data/_sass/layouts/_index.scss +6 -0
- data/_sass/layouts/_page.scss +77 -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 +16 -16
- data/_sass/layouts/index.scss +0 -6
- data/_sass/layouts/page.scss +0 -69
- 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/{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: 3af40c327588b055217558aa5feeff393a4c1a58e0c57907fb2da227cdc50bef
|
4
|
+
data.tar.gz: 1d561712aecb45ea7fd825b43e5b374e6e9140d83fe222d9ab1eb8cc431e9438
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 572d5d7171905c787a34996d7cc85e618212b9dc989d1d549b11a1f1acc06e27b94899a9411002050c9dcf72bf77ea52acaadbb0514db2aa93df6dad0c920c6e
|
7
|
+
data.tar.gz: 172d3d3d2114d1861a4db0d0a5d22f27f918008d77fb42cdf18cdb32c2cb40431d7d3485a836b3ad75f71bbfc1495759155fb2c10b9d86b1b498798cf92d70e3
|
data/_config.yml
CHANGED
data/_includes/footer.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Love
|
1
|
+
Love, <a href="https://github.com/okdecm">@okdecm</a>
|
data/_layouts/page.html
CHANGED
@@ -4,37 +4,39 @@ layout: container
|
|
4
4
|
|
5
5
|
<div class="page {% if page.id %} page-id-{{ page.id }} {% endif %}">
|
6
6
|
<div class="container">
|
7
|
-
<
|
8
|
-
<
|
9
|
-
<div class="
|
10
|
-
<
|
11
|
-
{{ site.
|
12
|
-
|
7
|
+
<div class="stack">
|
8
|
+
<header>
|
9
|
+
<div class="terminal">
|
10
|
+
<div class="titles line">
|
11
|
+
<a class="site-title" href="{{ site.url }}">
|
12
|
+
{{ site.title | escape }}
|
13
|
+
</a>
|
13
14
|
|
14
|
-
|
15
|
-
|
15
|
+
{% if page.title %}
|
16
|
+
<span class="separator">/</span>
|
16
17
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
18
|
+
<a class="page-title" href="{{ page.url }}">
|
19
|
+
{{ page.title | escape }}
|
20
|
+
</a>
|
21
|
+
{% endif %} >
|
21
22
|
|
22
|
-
|
23
|
+
<span class="input-marker">_</span>
|
24
|
+
</div>
|
23
25
|
</div>
|
24
|
-
</div>
|
25
26
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
27
|
+
<div class="actions">
|
28
|
+
<a class="set-theme-light" href="#" onClick="setTheme('light')">> light</a>
|
29
|
+
<a class="set-theme-dark" href="#" onClick="setTheme('dark')">> dark</a>
|
30
|
+
</div>
|
31
|
+
</header>
|
31
32
|
|
32
|
-
|
33
|
-
|
34
|
-
|
33
|
+
<main>
|
34
|
+
{{ content }}
|
35
|
+
</main>
|
35
36
|
|
36
|
-
|
37
|
-
|
38
|
-
|
37
|
+
<footer>
|
38
|
+
{% include footer.html %}
|
39
|
+
</footer>
|
40
|
+
</div>
|
39
41
|
</div>
|
40
42
|
</div>
|
data/_layouts/posts.html
CHANGED
@@ -9,14 +9,16 @@ layout: page
|
|
9
9
|
|
10
10
|
<ul class="list">
|
11
11
|
{% if site.posts %}
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
{% for post in site.posts %}
|
13
|
+
<li>
|
14
|
+
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
15
|
+
{% if site.dec_terminal_theme.show_post_dates_on_posts %}
|
16
|
+
<span class="post-date"> - {{ post.date | date: "%Y-%m-%d" }}</span>
|
17
|
+
{% endif %}
|
18
|
+
</li>
|
19
|
+
{% endfor %}
|
18
20
|
{% else %}
|
19
|
-
|
21
|
+
<li>No posts found.</li>
|
20
22
|
{% endif %}
|
21
23
|
</ul>
|
22
24
|
</div>
|
@@ -1,7 +1,9 @@
|
|
1
|
-
@
|
1
|
+
@use "./themes";
|
2
|
+
|
3
|
+
@use "./layouts";
|
2
4
|
|
3
5
|
html {
|
4
|
-
@
|
6
|
+
@include themes.contained;
|
5
7
|
|
6
8
|
* {
|
7
9
|
margin: 0;
|
@@ -18,24 +20,18 @@ html {
|
|
18
20
|
h6 {
|
19
21
|
color: var(--color-flair);
|
20
22
|
|
21
|
-
margin
|
23
|
+
margin: var(--gap-small) 0;
|
22
24
|
}
|
23
25
|
|
24
26
|
h1 {
|
25
|
-
margin-top: var(--gap-large);
|
26
|
-
|
27
27
|
font-size: var(--text-size-large);
|
28
28
|
}
|
29
29
|
|
30
30
|
h2 {
|
31
|
-
margin-top: var(--gap-medium);
|
32
|
-
|
33
31
|
font-size: var(--text-size-medium);
|
34
32
|
}
|
35
33
|
|
36
34
|
h3 {
|
37
|
-
margin-top: var(--gap-small);
|
38
|
-
|
39
35
|
font-size: var(--text-size-small);
|
40
36
|
}
|
41
37
|
|
@@ -46,7 +42,8 @@ html {
|
|
46
42
|
}
|
47
43
|
|
48
44
|
p {
|
49
|
-
margin: var(--gap-small)
|
45
|
+
margin-top: var(--gap-small);
|
46
|
+
margin-bottom: var(--gap-medium);
|
50
47
|
}
|
51
48
|
|
52
49
|
pre.highlight {
|
@@ -0,0 +1,77 @@
|
|
1
|
+
.theme-light {
|
2
|
+
.page {
|
3
|
+
header {
|
4
|
+
.actions {
|
5
|
+
.set-theme-light {
|
6
|
+
color: var(--color-brand);
|
7
|
+
}
|
8
|
+
}
|
9
|
+
}
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
.theme-dark {
|
14
|
+
.page {
|
15
|
+
header {
|
16
|
+
.actions {
|
17
|
+
.set-theme-dark {
|
18
|
+
color: var(--color-brand);
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
.page {
|
26
|
+
display: flex;
|
27
|
+
flex-direction: row;
|
28
|
+
justify-content: center;
|
29
|
+
|
30
|
+
min-height: 100vh;
|
31
|
+
|
32
|
+
.container {
|
33
|
+
max-width: 750px;
|
34
|
+
width: 100%;
|
35
|
+
padding: var(--gap-medium);
|
36
|
+
|
37
|
+
.stack {
|
38
|
+
display: flex;
|
39
|
+
flex-direction: column;
|
40
|
+
gap: var(--gap-large);
|
41
|
+
|
42
|
+
min-height: 100%;
|
43
|
+
|
44
|
+
>header {
|
45
|
+
display: flex;
|
46
|
+
|
47
|
+
align-items: center;
|
48
|
+
|
49
|
+
.titles {
|
50
|
+
font-size: var(--text-size-xlarge);
|
51
|
+
|
52
|
+
&>* {
|
53
|
+
font-size: var(--text-size-xlarge);
|
54
|
+
}
|
55
|
+
|
56
|
+
.site-title {
|
57
|
+
color: var(--color-brand);
|
58
|
+
}
|
59
|
+
|
60
|
+
.page-title {
|
61
|
+
color: var(--color-highlight);
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
.actions {
|
66
|
+
margin-left: auto;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
>footer {
|
71
|
+
margin-top: auto;
|
72
|
+
|
73
|
+
font-size: var(--text-size-small);
|
74
|
+
}
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
@@ -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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dec Murphy
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 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
|
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
70
|
- !ruby/object:Gem::Version
|
71
71
|
version: '0'
|
72
72
|
requirements: []
|
73
|
-
rubygems_version: 3.6.
|
73
|
+
rubygems_version: 3.6.9
|
74
74
|
specification_version: 4
|
75
75
|
summary: A Jekyll theme inspired by Dec's terminal aesthetics
|
76
76
|
test_files: []
|
data/_sass/layouts/index.scss
DELETED
data/_sass/layouts/page.scss
DELETED
@@ -1,69 +0,0 @@
|
|
1
|
-
.theme-light {
|
2
|
-
.page {
|
3
|
-
header {
|
4
|
-
.actions {
|
5
|
-
.set-theme-light {
|
6
|
-
color: var(--color-brand);
|
7
|
-
}
|
8
|
-
}
|
9
|
-
}
|
10
|
-
}
|
11
|
-
}
|
12
|
-
|
13
|
-
.theme-dark {
|
14
|
-
.page {
|
15
|
-
header {
|
16
|
-
.actions {
|
17
|
-
.set-theme-dark {
|
18
|
-
color: var(--color-brand);
|
19
|
-
}
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
24
|
-
|
25
|
-
.page {
|
26
|
-
display: flex;
|
27
|
-
flex-direction: row;
|
28
|
-
justify-content: center;
|
29
|
-
|
30
|
-
.container {
|
31
|
-
width: 50%;
|
32
|
-
}
|
33
|
-
|
34
|
-
header {
|
35
|
-
display: flex;
|
36
|
-
|
37
|
-
align-items: center;
|
38
|
-
|
39
|
-
margin: var(--gap-medium) 0;
|
40
|
-
|
41
|
-
.titles {
|
42
|
-
font-size: var(--text-size-xlarge);
|
43
|
-
|
44
|
-
&>* {
|
45
|
-
font-size: var(--text-size-xlarge);
|
46
|
-
}
|
47
|
-
|
48
|
-
.site-title {
|
49
|
-
color: var(--color-brand);
|
50
|
-
}
|
51
|
-
|
52
|
-
.page-title {
|
53
|
-
color: var(--color-highlight);
|
54
|
-
}
|
55
|
-
}
|
56
|
-
|
57
|
-
.actions {
|
58
|
-
margin-left: auto;
|
59
|
-
}
|
60
|
-
}
|
61
|
-
|
62
|
-
main {
|
63
|
-
margin: var(--gap-large) 0;
|
64
|
-
}
|
65
|
-
|
66
|
-
footer {
|
67
|
-
font-size: var(--text-size-small);
|
68
|
-
}
|
69
|
-
}
|
@@ -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
|