jekyll-theme-doodle 5.1.7 → 5.1.9
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 +16 -4
- data/_config.yml +1 -0
- data/_includes/head.html +18 -10
- data/_includes/navrail.html +20 -14
- data/_layouts/default.html +1 -12
- data/_sass/minima/_base.scss +9 -29
- data/_sass/minima/_navigation-bar.scss +1 -0
- data/_sass/minima/_pinned-post.scss +1 -0
- data/_sass/minima/_posts.scss +8 -4
- data/_sass/minima/_syntax-highlighting.scss +292 -61
- data/_sass/minima.scss +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb7883ecaae0f182f8068c610a96a1e0b0693094a9c72fbfe6c217fd9d6db664
|
4
|
+
data.tar.gz: 8929366066eb7e901899dd32f74ec2f17fbb6cb8d4ff3f81ed9aac22c9b894c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1164ea9426b7412592b4cffef94295da6e89c2aab08cfa61260d94dce3eeffd0d3749880f97f20acd53920cf78d79bed9811f120482496e74996b61f124ba0c
|
7
|
+
data.tar.gz: 272b3b39b923c6f0d0f70604a98fb6712af42fdfd4170ed846db38461e92f03e624e25a731208aacb4d37e5531343141a5193a95ec8108e89337855472fd6eb1
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Doodle: A [Jekyll](https://jekyllrb.com/) theme for playful and creative aesthetic
|
1
|
+
# Doodle: A [Jekyll](https://jekyllrb.com/) blog theme for a playful and creative aesthetic
|
2
2
|
|
3
3
|
## Table of Contents
|
4
4
|
|
@@ -11,6 +11,7 @@
|
|
11
11
|
- [Add tagline in header](#add-tagline-in-header)
|
12
12
|
- [Google analytics](#google-analytics)
|
13
13
|
- [Adding icons to naviagtion links](#adding-icons-to-naviagtion-links)
|
14
|
+
- [Setting default color scheme](#set-default-color-scheme)
|
14
15
|
- [Contributing](#contributing)
|
15
16
|
- [License](#license)
|
16
17
|
|
@@ -104,6 +105,16 @@ status: pinned
|
|
104
105
|
<!-- post content -->
|
105
106
|
```
|
106
107
|
|
108
|
+
### Set default color scheme
|
109
|
+
|
110
|
+
add the color_scheme property to \_config.yml. in the format `[light/dark]-[color]` e.g.
|
111
|
+
|
112
|
+
```yaml
|
113
|
+
color_scheme: light-green
|
114
|
+
```
|
115
|
+
|
116
|
+
following colors are available: green, blue, pink, yellow, cyan
|
117
|
+
|
107
118
|
### Add tagline in header
|
108
119
|
|
109
120
|
To add a tagline/description below the site title, add a tagline property to \_config.yml
|
@@ -112,15 +123,16 @@ To add a tagline/description below the site title, add a tagline property to \_c
|
|
112
123
|
tagline: "Your awesome tagline"
|
113
124
|
```
|
114
125
|
|
115
|
-
|
116
126
|
### Google analytics
|
117
127
|
|
118
|
-
add your google analytics tracking id to \_config.yml
|
128
|
+
just add your google analytics tracking id to \_config.yml
|
119
129
|
|
120
130
|
```yaml
|
121
131
|
google_analytics: UA-NNNNNNNN-N
|
122
132
|
```
|
133
|
+
|
123
134
|
### Adding icons to naviagtion links
|
135
|
+
|
124
136
|
add the icon path to the page front matter e.g
|
125
137
|
|
126
138
|
```yaml
|
@@ -137,7 +149,7 @@ icon: "/assets/icons/about.svg"
|
|
137
149
|
- [ ] Add support for comments
|
138
150
|
- [ ] Search functionality
|
139
151
|
- [ ] automatic table of contents generation (button in mobile view/ sidebar in desktop view)
|
140
|
-
|
152
|
+
- [ ] scroll progress indicator
|
141
153
|
|
142
154
|
## Contributing
|
143
155
|
|
data/_config.yml
CHANGED
@@ -29,6 +29,7 @@ baseurl: "" # the subpath of your site, e.g. /blog
|
|
29
29
|
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
30
30
|
twitter_username: jekyllrb
|
31
31
|
github_username: jekyll
|
32
|
+
color_scheme: dark-pink
|
32
33
|
# Build settings
|
33
34
|
plugins:
|
34
35
|
- jekyll-feed
|
data/_includes/head.html
CHANGED
@@ -1,23 +1,29 @@
|
|
1
1
|
<head>
|
2
|
-
<meta charset="utf-8"
|
3
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge"
|
4
|
-
<meta name="viewport" content="width=device-width, initial-scale=1"
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
5
|
<link
|
6
6
|
rel="preload"
|
7
7
|
href="/assets/theme-assets/theme-fonts/Excalifont-Regular.woff2"
|
8
8
|
as="font"
|
9
9
|
type="font/ttf"
|
10
10
|
crossorigin
|
11
|
-
|
11
|
+
>
|
12
12
|
<link
|
13
13
|
rel="preload"
|
14
14
|
href="/assets/theme-assets/theme-fonts/comic shanns.otf"
|
15
15
|
as="font"
|
16
16
|
type="font/otf"
|
17
17
|
crossorigin
|
18
|
-
|
19
|
-
{%- seo -%}
|
20
|
-
|
18
|
+
>
|
19
|
+
{%- seo -%}
|
20
|
+
<link
|
21
|
+
rel="stylesheet"
|
22
|
+
href="
|
23
|
+
{{ "/assets/main.css" | relative_url
|
24
|
+
}}
|
25
|
+
"
|
26
|
+
>
|
21
27
|
<script>
|
22
28
|
(function () {
|
23
29
|
const colors = {
|
@@ -35,13 +41,15 @@
|
|
35
41
|
const root = document.querySelector("html");
|
36
42
|
let theme = window.localStorage.getItem("theme");
|
37
43
|
if (theme === null || !(theme in colors)) {
|
38
|
-
theme = "dark-pink";
|
44
|
+
theme = "{{ site.color_scheme | default: "dark-pink" }}";
|
39
45
|
window.localStorage.setItem("theme", theme);
|
40
46
|
}
|
41
47
|
root.className = theme;
|
42
48
|
})();
|
43
49
|
</script>
|
44
50
|
<script src="/assets/theme-assets/js/theme.js" defer></script>
|
45
|
-
{%- feed_meta -%}
|
46
|
-
|
51
|
+
{%- feed_meta -%}
|
52
|
+
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
53
|
+
{%- include google-analytics.html -%}
|
54
|
+
{%- endif -%}
|
47
55
|
</head>
|
data/_includes/navrail.html
CHANGED
@@ -1,16 +1,22 @@
|
|
1
1
|
{%- if page_paths -%}
|
2
|
-
<nav class="navrail">
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
{%-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
2
|
+
<nav class="navrail">
|
3
|
+
<a class="navrail-button" href="/">
|
4
|
+
<img
|
5
|
+
class="navrail-icon"
|
6
|
+
src="{{- "/assets/theme-assets/theme-icons/home2.svg" | relative_url -}}"
|
7
|
+
>
|
8
|
+
Home</a
|
9
|
+
>
|
10
|
+
{%- for path in page_paths -%}
|
11
|
+
{%- assign my_page = site.pages | where: 'path', path | first -%}
|
12
|
+
{%- if my_page.title -%}
|
13
|
+
<a class="navrail-button" href="{{ my_page.url | relative_url }}">
|
14
|
+
{%- if my_page.title -%}
|
15
|
+
<img class="navrail-icon" src="{{- my_page.icon | relative_url -}}">
|
16
|
+
{%- endif -%}
|
17
|
+
{{ my_page.title | escape }}
|
18
|
+
</a>
|
19
|
+
{%- endif -%}
|
20
|
+
{%- endfor -%}
|
21
|
+
</nav>
|
16
22
|
{%- endif -%}
|
data/_layouts/default.html
CHANGED
@@ -1,23 +1,12 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html lang="{{ page.lang | default: site.lang | default: "en" }}" class="dark-pink">
|
3
|
-
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}" class="{{ site.color_scheme | default: "dark-pink" }}">
|
4
3
|
{%- include head.html -%}
|
5
|
-
|
6
4
|
<body >
|
7
|
-
|
8
5
|
{%- include header.html -%}
|
9
6
|
{%- include navrail.html -%}
|
10
|
-
|
11
|
-
|
12
7
|
<main class="page-content" aria-label="Content">
|
13
|
-
|
14
8
|
{{ content }}
|
15
|
-
|
16
|
-
|
17
9
|
</main>
|
18
|
-
|
19
10
|
{%- include footer.html -%}
|
20
|
-
|
21
11
|
</body>
|
22
|
-
|
23
12
|
</html>
|
data/_sass/minima/_base.scss
CHANGED
@@ -143,44 +143,24 @@ a {
|
|
143
143
|
* Blockquotes
|
144
144
|
*/
|
145
145
|
blockquote {
|
146
|
-
color: var(--md-sys-color-
|
147
|
-
|
148
|
-
padding
|
149
|
-
margin-left:
|
150
|
-
margin-right:
|
146
|
+
background-color: var(--md-sys-color-tertiary-container);
|
147
|
+
color: var(--md-sys-color-on-tertiary-container);
|
148
|
+
padding: $spacing-unit;
|
149
|
+
margin-left: 10px;
|
150
|
+
margin-right: 10px;
|
151
|
+
border-radius: 16px;
|
151
152
|
@include relative-font-size(1.125);
|
152
153
|
letter-spacing: -1px;
|
153
154
|
|
154
155
|
> :last-child {
|
155
156
|
margin-bottom: 0;
|
156
157
|
}
|
158
|
+
> p {
|
159
|
+
text-align: left;
|
160
|
+
}
|
157
161
|
}
|
158
162
|
|
159
|
-
/**
|
160
|
-
* Code formatting
|
161
|
-
*/
|
162
|
-
pre,
|
163
|
-
code {
|
164
|
-
@include relative-font-size(0.9375);
|
165
|
-
border: 1px solid var(--md-sys-color-outline);
|
166
|
-
border-radius: 3px;
|
167
|
-
background-color: var(--md-sys-color-surface-container-high);
|
168
|
-
}
|
169
|
-
|
170
|
-
code {
|
171
|
-
padding: 1px 5px;
|
172
|
-
}
|
173
|
-
|
174
|
-
pre {
|
175
|
-
padding: 8px 12px;
|
176
|
-
overflow-x: auto;
|
177
163
|
|
178
|
-
> code {
|
179
|
-
border: 0;
|
180
|
-
padding-right: 0;
|
181
|
-
padding-left: 0;
|
182
|
-
}
|
183
|
-
}
|
184
164
|
|
185
165
|
/**
|
186
166
|
* Wrapper
|
data/_sass/minima/_posts.scss
CHANGED
@@ -41,17 +41,18 @@
|
|
41
41
|
background: var(--md-sys-color-surface);
|
42
42
|
border-radius: 24px;
|
43
43
|
padding: 24px;
|
44
|
-
@include media-query($on-palm){
|
44
|
+
@include media-query($on-palm) {
|
45
45
|
padding: 8px;
|
46
46
|
}
|
47
47
|
}
|
48
|
+
|
49
|
+
p {
|
50
|
+
text-align: justify;
|
51
|
+
}
|
48
52
|
.post-content {
|
49
53
|
margin-bottom: $spacing-unit;
|
50
54
|
|
51
55
|
// text-align: justify;
|
52
|
-
p {
|
53
|
-
text-align: justify;
|
54
|
-
}
|
55
56
|
|
56
57
|
h2 {
|
57
58
|
@include relative-font-size(2);
|
@@ -76,6 +77,9 @@
|
|
76
77
|
@include relative-font-size(1.125);
|
77
78
|
}
|
78
79
|
}
|
80
|
+
a{
|
81
|
+
text-decoration: underline;
|
82
|
+
}
|
79
83
|
}
|
80
84
|
|
81
85
|
.post-list {
|
@@ -1,68 +1,299 @@
|
|
1
|
+
pre,
|
2
|
+
code {
|
3
|
+
@include relative-font-size(0.9375);
|
4
|
+
border: 1px solid var(--md-sys-color-outline);
|
5
|
+
border-radius: 3px;
|
6
|
+
background-color: var(--md-sys-color-surface-container);
|
7
|
+
}
|
8
|
+
|
9
|
+
code {
|
10
|
+
padding: 1px 5px;
|
11
|
+
}
|
12
|
+
|
13
|
+
pre {
|
14
|
+
padding: 8px 12px;
|
15
|
+
overflow-x: auto;
|
16
|
+
|
17
|
+
> code {
|
18
|
+
border: 0;
|
19
|
+
padding-right: 0;
|
20
|
+
padding-left: 0;
|
21
|
+
}
|
22
|
+
}
|
1
23
|
.highlight {
|
2
|
-
background: var(--md-sys-color-surface-container
|
24
|
+
background: var(--md-sys-color-surface-container);
|
3
25
|
@extend %vertical-rhythm;
|
4
26
|
|
5
27
|
.highlighter-rouge & {
|
6
|
-
|
28
|
+
background: var(--md-sys-color-surface-container);
|
7
29
|
}
|
30
|
+
}
|
31
|
+
// .language-plaintext{
|
32
|
+
// background-color: var(--md-sys-color-secondary-container);
|
33
|
+
// color: var(--md-sys-color-on-secondary-container);
|
34
|
+
// }
|
35
|
+
:root {
|
36
|
+
/* Light mode colors */
|
37
|
+
--light-comment: #8e908c;
|
38
|
+
--light-error: #c82829;
|
39
|
+
--light-keyword: #8959a8;
|
40
|
+
--light-operator: #3e999f;
|
41
|
+
--light-comment-preproc: #eab700;
|
42
|
+
--light-deleted: #c82829;
|
43
|
+
--light-deleted-bg: #ffdad9;
|
44
|
+
--light-inserted: #718c00;
|
45
|
+
--light-inserted-bg: #e6ffed;
|
46
|
+
--light-output: #4d4d4c;
|
47
|
+
--light-prompt: #8959a8;
|
48
|
+
--light-strong: #000000;
|
49
|
+
--light-traceback: #c82829;
|
50
|
+
--light-number: #f5871f;
|
51
|
+
--light-string: #718c00;
|
52
|
+
--light-attribute: #3e999f;
|
53
|
+
--light-builtin: #4271ae;
|
54
|
+
--light-class: #8959a8;
|
55
|
+
--light-constant: #f5871f;
|
56
|
+
--light-entity: #3e999f;
|
57
|
+
--light-exception: #c82829;
|
58
|
+
--light-function: #4271ae;
|
59
|
+
--light-namespace: #4d4d4c;
|
60
|
+
--light-tag: #c82829;
|
61
|
+
--light-variable: #f5871f;
|
62
|
+
--light-whitespace: #ffffff;
|
63
|
+
--light-regex: #3e999f;
|
64
|
+
--light-symbol: #8959a8;
|
65
|
+
|
66
|
+
/* Dark mode colors */
|
67
|
+
--dark-comment: #999999;
|
68
|
+
--dark-error: #ff6c6b;
|
69
|
+
--dark-error-bg: #2c2c2c;
|
70
|
+
--dark-keyword: #c5a5c5;
|
71
|
+
--dark-operator: #56b6c2;
|
72
|
+
--dark-comment-preproc: #e6c07b;
|
73
|
+
--dark-deleted: #e06c75;
|
74
|
+
--dark-deleted-bg: #3c2a2a;
|
75
|
+
--dark-inserted: #98c379;
|
76
|
+
--dark-inserted-bg: #2a3c2a;
|
77
|
+
--dark-output: #5c6370;
|
78
|
+
--dark-prompt: #c678dd;
|
79
|
+
--dark-strong: #e6c07b;
|
80
|
+
--dark-traceback: #e06c75;
|
81
|
+
--dark-number: #d19a66;
|
82
|
+
--dark-string: #98c379;
|
83
|
+
--dark-attribute: #56b6c2;
|
84
|
+
--dark-builtin: #61aeee;
|
85
|
+
--dark-class: #c678dd;
|
86
|
+
--dark-constant: #d19a66;
|
87
|
+
--dark-entity: #56b6c2;
|
88
|
+
--dark-exception: #e06c75;
|
89
|
+
--dark-function: #61aeee;
|
90
|
+
--dark-namespace: #abb2bf;
|
91
|
+
--dark-tag: #e06c75;
|
92
|
+
--dark-variable: #d19a66;
|
93
|
+
--dark-whitespace: #5c6370;
|
94
|
+
--dark-regex: #56b6c2;
|
95
|
+
--dark-symbol: #c678dd;
|
96
|
+
}
|
97
|
+
|
98
|
+
.light-pink,
|
99
|
+
.light-yellow,
|
100
|
+
.light-cyan,
|
101
|
+
.light-blue,
|
102
|
+
.light-green {
|
103
|
+
/* Light mode (default) */
|
8
104
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
105
|
+
--comment: var(--light-comment);
|
106
|
+
--error: var(--light-error);
|
107
|
+
--keyword: var(--light-keyword);
|
108
|
+
--operator: var(--light-operator);
|
109
|
+
--comment-preproc: var(--light-comment-preproc);
|
110
|
+
--deleted: var(--light-deleted);
|
111
|
+
--deleted-bg: var(--light-deleted-bg);
|
112
|
+
--inserted: var(--light-inserted);
|
113
|
+
--inserted-bg: var(--light-inserted-bg);
|
114
|
+
--output: var(--light-output);
|
115
|
+
--prompt: var(--light-prompt);
|
116
|
+
--strong: var(--light-strong);
|
117
|
+
--traceback: var(--light-traceback);
|
118
|
+
--number: var(--light-number);
|
119
|
+
--string: var(--light-string);
|
120
|
+
--attribute: var(--light-attribute);
|
121
|
+
--builtin: var(--light-builtin);
|
122
|
+
--class: var(--light-class);
|
123
|
+
--constant: var(--light-constant);
|
124
|
+
--entity: var(--light-entity);
|
125
|
+
--exception: var(--light-exception);
|
126
|
+
--function: var(--light-function);
|
127
|
+
--namespace: var(--light-namespace);
|
128
|
+
--tag: var(--light-tag);
|
129
|
+
--variable: var(--light-variable);
|
130
|
+
--whitespace: var(--light-whitespace);
|
131
|
+
--regex: var(--light-regex);
|
132
|
+
--symbol: var(--light-symbol);
|
133
|
+
}
|
134
|
+
|
135
|
+
/* Dark mode */
|
136
|
+
.dark-pink,
|
137
|
+
.dark-yellow,
|
138
|
+
.dark-cyan,
|
139
|
+
.dark-blue,
|
140
|
+
.dark-green {
|
141
|
+
--comment: var(--dark-comment);
|
142
|
+
--error: var(--dark-error);
|
143
|
+
--error-bg: var(--dark-error-bg);
|
144
|
+
--keyword: var(--dark-keyword);
|
145
|
+
--operator: var(--dark-operator);
|
146
|
+
--comment-preproc: var(--dark-comment-preproc);
|
147
|
+
--deleted: var(--dark-deleted);
|
148
|
+
--deleted-bg: var(--dark-deleted-bg);
|
149
|
+
--inserted: var(--dark-inserted);
|
150
|
+
--inserted-bg: var(--dark-inserted-bg);
|
151
|
+
--output: var(--dark-output);
|
152
|
+
--prompt: var(--dark-prompt);
|
153
|
+
--strong: var(--dark-strong);
|
154
|
+
--traceback: var(--dark-traceback);
|
155
|
+
--number: var(--dark-number);
|
156
|
+
--string: var(--dark-string);
|
157
|
+
--attribute: var(--dark-attribute);
|
158
|
+
--builtin: var(--dark-builtin);
|
159
|
+
--class: var(--dark-class);
|
160
|
+
--constant: var(--dark-constant);
|
161
|
+
--entity: var(--dark-entity);
|
162
|
+
--exception: var(--dark-exception);
|
163
|
+
--function: var(--dark-function);
|
164
|
+
--namespace: var(--dark-namespace);
|
165
|
+
--tag: var(--dark-tag);
|
166
|
+
--variable: var(--dark-variable);
|
167
|
+
--whitespace: var(--dark-whitespace);
|
168
|
+
--regex: var(--dark-regex);
|
169
|
+
--symbol: var(--dark-symbol);
|
170
|
+
}
|
171
|
+
|
172
|
+
/* Syntax highlighting classes */
|
173
|
+
.c,
|
174
|
+
.cm,
|
175
|
+
.c1 {
|
176
|
+
color: var(--comment);
|
177
|
+
font-style: italic;
|
178
|
+
}
|
179
|
+
.err {
|
180
|
+
color: var(--error);
|
181
|
+
background-color: var(--error-bg);
|
182
|
+
}
|
183
|
+
.k,
|
184
|
+
.kc,
|
185
|
+
.kd,
|
186
|
+
.kp,
|
187
|
+
.kr {
|
188
|
+
font-weight: bold;
|
189
|
+
color: var(--keyword);
|
190
|
+
}
|
191
|
+
.o,
|
192
|
+
.ow {
|
193
|
+
font-weight: bold;
|
194
|
+
color: var(--operator);
|
195
|
+
}
|
196
|
+
.cp {
|
197
|
+
color: var(--comment-preproc);
|
198
|
+
font-weight: bold;
|
199
|
+
}
|
200
|
+
.cs {
|
201
|
+
color: var(--comment);
|
202
|
+
font-weight: bold;
|
203
|
+
font-style: italic;
|
204
|
+
}
|
205
|
+
.gd,
|
206
|
+
.gd .x {
|
207
|
+
color: var(--deleted);
|
208
|
+
background-color: var(--deleted-bg);
|
209
|
+
}
|
210
|
+
.gi,
|
211
|
+
.gi .x {
|
212
|
+
color: var(--inserted);
|
213
|
+
background-color: var(--inserted-bg);
|
214
|
+
}
|
215
|
+
.go {
|
216
|
+
color: var(--output);
|
217
|
+
}
|
218
|
+
.gp {
|
219
|
+
color: var(--prompt);
|
220
|
+
}
|
221
|
+
.gs {
|
222
|
+
font-weight: bold;
|
223
|
+
color: var(--strong);
|
224
|
+
}
|
225
|
+
.gu {
|
226
|
+
color: var(--builtin);
|
227
|
+
}
|
228
|
+
.gt {
|
229
|
+
color: var(--traceback);
|
230
|
+
}
|
231
|
+
.kt {
|
232
|
+
color: var(--class);
|
233
|
+
font-weight: bold;
|
234
|
+
}
|
235
|
+
.m,
|
236
|
+
.mf,
|
237
|
+
.mh,
|
238
|
+
.mi,
|
239
|
+
.mo,
|
240
|
+
.il {
|
241
|
+
color: var(--number);
|
242
|
+
}
|
243
|
+
.s,
|
244
|
+
.sb,
|
245
|
+
.sc,
|
246
|
+
.sd,
|
247
|
+
.s2,
|
248
|
+
.se,
|
249
|
+
.sh,
|
250
|
+
.si,
|
251
|
+
.sx,
|
252
|
+
.s1 {
|
253
|
+
color: var(--string);
|
254
|
+
}
|
255
|
+
.na {
|
256
|
+
color: var(--attribute);
|
257
|
+
}
|
258
|
+
.nb {
|
259
|
+
color: var(--builtin);
|
260
|
+
}
|
261
|
+
.nc {
|
262
|
+
color: var(--class);
|
263
|
+
font-weight: bold;
|
264
|
+
}
|
265
|
+
.no {
|
266
|
+
color: var(--constant);
|
267
|
+
}
|
268
|
+
.ni {
|
269
|
+
color: var(--entity);
|
270
|
+
}
|
271
|
+
.ne {
|
272
|
+
color: var(--exception);
|
273
|
+
font-weight: bold;
|
274
|
+
}
|
275
|
+
.nf {
|
276
|
+
color: var(--function);
|
277
|
+
font-weight: bold;
|
278
|
+
}
|
279
|
+
.nn {
|
280
|
+
color: var(--namespace);
|
281
|
+
}
|
282
|
+
.nt {
|
283
|
+
color: var(--tag);
|
284
|
+
}
|
285
|
+
.nv,
|
286
|
+
.vc,
|
287
|
+
.vg,
|
288
|
+
.vi {
|
289
|
+
color: var(--variable);
|
290
|
+
}
|
291
|
+
.w {
|
292
|
+
color: var(--whitespace);
|
293
|
+
}
|
294
|
+
.sr {
|
295
|
+
color: var(--regex);
|
296
|
+
}
|
297
|
+
.ss {
|
298
|
+
color: var(--symbol);
|
68
299
|
}
|
data/_sass/minima.scss
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
@charset "utf-8";
|
2
2
|
|
3
3
|
// Define defaults for each variable.
|
4
|
-
|
5
4
|
$base-font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI",
|
6
5
|
Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
7
6
|
"Segoe UI Symbol" !default;
|
8
|
-
$base-font-size:
|
7
|
+
$base-font-size: 17px !default;
|
9
8
|
$base-font-weight: 400 !default;
|
10
9
|
$small-font-size: $base-font-size * 0.875 !default;
|
11
10
|
$base-line-height: 1.5 !default;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-doodle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.1.
|
4
|
+
version: 5.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gul Noor
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|