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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5aed0b3e91836678ba06dfaa52335f888bac660dcc7b0202d16148e7c40a7f8
4
- data.tar.gz: 23baa3bf9fa923f591344c5cec57cba4642e8fec924f46bb0a921da16ef1a993
3
+ metadata.gz: cb7883ecaae0f182f8068c610a96a1e0b0693094a9c72fbfe6c217fd9d6db664
4
+ data.tar.gz: 8929366066eb7e901899dd32f74ec2f17fbb6cb8d4ff3f81ed9aac22c9b894c9
5
5
  SHA512:
6
- metadata.gz: 3db04474c1bed02c293d1f1d05ce09ce672a5c096d3fb3d22a7a0184cc90772a205490214a7974d950e3e3fa45fe16580ce7bad8def5a5bdb624aa54b4524de7
7
- data.tar.gz: 80a2ec83675fbf5e1790044338b66ce72a1345084e349a57463110d064e346d6ac3269f0ee5a848ccc1a8cd6aaa1e7ea18bf3961a1a8303cd604271dd495199d
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 -%} <link rel="stylesheet" href=" {{ "/assets/main.css" | relative_url
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 -%} {%- if jekyll.environment == 'production' and
46
- site.google_analytics -%} {%- include google-analytics.html -%} {%- endif -%}
51
+ {%- feed_meta -%}
52
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
53
+ {%- include google-analytics.html -%}
54
+ {%- endif -%}
47
55
  </head>
@@ -1,16 +1,22 @@
1
1
  {%- if page_paths -%}
2
- <nav class="navrail">
3
- <a class="navrail-button" href="/">
4
- <img class="navrail-icon" src="{{-
5
- "/assets/theme-assets/theme-icons/home2.svg" | relative_url -}}" > Home</a
6
- >
7
- {%- for path in page_paths -%} {%- assign my_page = site.pages | where:
8
- 'path', path | first -%} {%- if my_page.title -%}
9
- <a class="navrail-button" href="{{ my_page.url | relative_url }}">
10
- {%- if my_page.title -%}
11
- <img class="navrail-icon" src="{{- my_page.icon | relative_url -}}" />
12
- {%- endif -%} {{ my_page.title | escape }}
13
- </a>
14
- {%- endif -%} {%- endfor -%}
15
- </nav>
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 -%}
@@ -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>
@@ -143,44 +143,24 @@ a {
143
143
  * Blockquotes
144
144
  */
145
145
  blockquote {
146
- color: var(--md-sys-color-primary);
147
- border-left: 3px solid $grey-color-light;
148
- padding-left: $spacing-unit / 2;
149
- margin-left: 12px;
150
- margin-right: 12px;
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
@@ -120,6 +120,7 @@
120
120
  flex-direction: column;
121
121
  width: 100%;
122
122
  justify-content: center;
123
+ text-align: center;
123
124
  align-items: center;
124
125
  color: var(--md-sys-color-on-surface);
125
126
  }
@@ -59,6 +59,7 @@
59
59
  flex-wrap: wrap;
60
60
  justify-content: space-around;
61
61
  padding-top: 12px;
62
+ gap:8px;
62
63
  list-style: none;
63
64
  background-color: var(--md-sys-color-surface-container-highest);
64
65
  border-radius: 24px;
@@ -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-high);
24
+ background: var(--md-sys-color-surface-container);
3
25
  @extend %vertical-rhythm;
4
26
 
5
27
  .highlighter-rouge & {
6
- background: var(--md-sys-color-surface-container-high);
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
- .c { color: #999; font-style: italic } // Comment
10
- .err { color: #ff6c6b; background-color: #2c2c2c } // Error
11
- .k { font-weight: bold; color: #c5a5c5 } // Keyword
12
- .o { font-weight: bold; color: #56b6c2 } // Operator
13
- .cm { color: #999; font-style: italic } // Comment.Multiline
14
- .cp { color: #e6c07b; font-weight: bold } // Comment.Preproc
15
- .c1 { color: #999; font-style: italic } // Comment.Single
16
- .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
17
- .gd { color: #e06c75; background-color: #3c2a2a } // Generic.Deleted
18
- .gd .x { color: #e06c75; background-color: #3c2a2a } // Generic.Deleted.Specific
19
- .ge { font-style: italic; color: #abb2bf } // Generic.Emph
20
- .gr { color: #e06c75 } // Generic.Error
21
- .gh { color: #e6c07b } // Generic.Heading
22
- .gi { color: #98c379; background-color: #2a3c2a } // Generic.Inserted
23
- .gi .x { color: #98c379; background-color: #2a3c2a } // Generic.Inserted.Specific
24
- .go { color: #5c6370 } // Generic.Output
25
- .gp { color: #c678dd } // Generic.Prompt
26
- .gs { font-weight: bold; color: #e6c07b } // Generic.Strong
27
- .gu { color: #56b6c2 } // Generic.Subheading
28
- .gt { color: #e06c75 } // Generic.Traceback
29
- .kc { font-weight: bold; color: #c5a5c5 } // Keyword.Constant
30
- .kd { font-weight: bold; color: #c5a5c5 } // Keyword.Declaration
31
- .kp { font-weight: bold; color: #c5a5c5 } // Keyword.Pseudo
32
- .kr { font-weight: bold; color: #c5a5c5 } // Keyword.Reserved
33
- .kt { color: #c678dd; font-weight: bold } // Keyword.Type
34
- .m { color: #d19a66 } // Literal.Number
35
- .s { color: #98c379 } // Literal.String
36
- .na { color: #56b6c2 } // Name.Attribute
37
- .nb { color: #61aeee } // Name.Builtin
38
- .nc { color: #c678dd; font-weight: bold } // Name.Class
39
- .no { color: #d19a66 } // Name.Constant
40
- .ni { color: #56b6c2 } // Name.Entity
41
- .ne { color: #e06c75; font-weight: bold } // Name.Exception
42
- .nf { color: #61aeee; font-weight: bold } // Name.Function
43
- .nn { color: #abb2bf } // Name.Namespace
44
- .nt { color: #e06c75 } // Name.Tag
45
- .nv { color: #d19a66 } // Name.Variable
46
- .ow { font-weight: bold; color: #56b6c2 } // Operator.Word
47
- .w { color: #5c6370 } // Text.Whitespace
48
- .mf { color: #d19a66 } // Literal.Number.Float
49
- .mh { color: #d19a66 } // Literal.Number.Hex
50
- .mi { color: #d19a66 } // Literal.Number.Integer
51
- .mo { color: #d19a66 } // Literal.Number.Oct
52
- .sb { color: #98c379 } // Literal.String.Backtick
53
- .sc { color: #98c379 } // Literal.String.Char
54
- .sd { color: #98c379 } // Literal.String.Doc
55
- .s2 { color: #98c379 } // Literal.String.Double
56
- .se { color: #98c379 } // Literal.String.Escape
57
- .sh { color: #98c379 } // Literal.String.Heredoc
58
- .si { color: #98c379 } // Literal.String.Interpol
59
- .sx { color: #98c379 } // Literal.String.Other
60
- .sr { color: #56b6c2 } // Literal.String.Regex
61
- .s1 { color: #98c379 } // Literal.String.Single
62
- .ss { color: #c678dd } // Literal.String.Symbol
63
- .bp { color: #e06c75 } // Name.Builtin.Pseudo
64
- .vc { color: #d19a66 } // Name.Variable.Class
65
- .vg { color: #d19a66 } // Name.Variable.Global
66
- .vi { color: #d19a66 } // Name.Variable.Instance
67
- .il { color: #d19a66 } // Literal.Number.Integer.Long
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: 16px !default;
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.7
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-07 00:00:00.000000000 Z
11
+ date: 2024-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll