jekyll-theme-chirpy 7.3.1 → 7.4.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/_data/locales/da-DK.yml +86 -0
- data/_data/locales/dv/342/200/221MV.yml +90 -0
- data/_data/locales/{fa-IR.yaml → fa-IR.yml} +8 -8
- data/_data/locales/ku-IQ.yml +91 -0
- data/_data/locales/ps/342/200/221AF.yml +90 -0
- data/_data/locales/ur-PK.yml +90 -0
- data/_data/origin/cors.yml +8 -8
- data/_includes/embed/audio.html +1 -1
- data/_includes/embed/spotify.html +22 -0
- data/_includes/favicons.html +3 -8
- data/_includes/head.html +1 -1
- data/_includes/pageviews/goatcounter.html +1 -1
- data/_includes/post-summary.html +39 -0
- data/_includes/refactor-content.html +1 -1
- data/_includes/related-posts.html +1 -1
- data/_includes/sidebar.html +9 -1
- data/_layouts/default.html +1 -1
- data/_layouts/home.html +28 -10
- data/_layouts/post.html +0 -1
- data/_sass/base/_base.scss +10 -3
- data/_sass/base/_syntax.scss +2 -3
- data/_sass/base/_typography.scss +2 -4
- data/_sass/components/_popups.scss +1 -1
- data/_sass/pages/_home.scss +1 -4
- data/_sass/themes/_dark.scss +46 -46
- data/_sass/themes/_light.scss +21 -25
- data/_sass/vendors/_bootstrap.scss +2 -2
- data/assets/feed.xml +1 -1
- data/assets/img/favicons/apple-touch-icon.png +0 -0
- data/assets/img/favicons/favicon-96x96.png +0 -0
- data/assets/img/favicons/favicon.ico +0 -0
- data/assets/img/favicons/favicon.svg +3 -0
- data/assets/img/favicons/site.webmanifest +6 -4
- data/assets/img/favicons/web-app-manifest-192x192.png +0 -0
- data/assets/img/favicons/web-app-manifest-512x512.png +0 -0
- data/assets/js/data/search.json +2 -1
- data/assets/js/dist/app.min.js +2 -2
- data/assets/js/dist/categories.min.js +2 -2
- data/assets/js/dist/commons.min.js +2 -2
- data/assets/js/dist/home.min.js +2 -2
- data/assets/js/dist/misc.min.js +2 -2
- data/assets/js/dist/page.min.js +2 -2
- data/assets/js/dist/post.min.js +2 -2
- data/assets/js/dist/sw.min.js +1 -1
- data/assets/js/dist/theme.min.js +1 -1
- metadata +14 -10
- data/_includes/post-description.html +0 -30
- data/assets/img/favicons/android-chrome-192x192.png +0 -0
- data/assets/img/favicons/android-chrome-512x512.png +0 -0
- data/assets/img/favicons/browserconfig.xml +0 -13
- data/assets/img/favicons/favicon-16x16.png +0 -0
- data/assets/img/favicons/favicon-32x32.png +0 -0
- data/assets/img/favicons/mstile-150x150.png +0 -0
data/_includes/sidebar.html
CHANGED
|
@@ -52,13 +52,21 @@
|
|
|
52
52
|
{% endunless %}
|
|
53
53
|
|
|
54
54
|
{% for entry in site.data.contact %}
|
|
55
|
+
{%- assign url = null -%}
|
|
56
|
+
|
|
55
57
|
{% case entry.type %}
|
|
56
58
|
{% when 'github', 'twitter' %}
|
|
59
|
+
{%- unless site[entry.type].username -%}
|
|
60
|
+
{%- continue -%}
|
|
61
|
+
{%- endunless -%}
|
|
57
62
|
{%- capture url -%}
|
|
58
63
|
https://{{ entry.type }}.com/{{ site[entry.type].username }}
|
|
59
64
|
{%- endcapture -%}
|
|
60
65
|
{% when 'email' %}
|
|
61
|
-
{
|
|
66
|
+
{%- unless site.social.email -%}
|
|
67
|
+
{%- continue -%}
|
|
68
|
+
{%- endunless -%}
|
|
69
|
+
{%- assign email = site.social.email | split: '@' -%}
|
|
62
70
|
{%- capture url -%}
|
|
63
71
|
javascript:location.href = 'mailto:' + ['{{ email[0] }}','{{ email[1] }}'].join('@')
|
|
64
72
|
{%- endcapture -%}
|
data/_layouts/default.html
CHANGED
|
@@ -25,7 +25,7 @@ layout: compress
|
|
|
25
25
|
|
|
26
26
|
<div class="row flex-grow-1">
|
|
27
27
|
<main aria-label="Main Content" class="col-12 col-lg-11 col-xl-9 px-md-4">
|
|
28
|
-
{% if layout.
|
|
28
|
+
{% if layout.layout == 'default' %}
|
|
29
29
|
{% include refactor-content.html content=content lang=lang %}
|
|
30
30
|
{% else %}
|
|
31
31
|
{{ content }}
|
data/_layouts/home.html
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
---
|
|
2
2
|
layout: default
|
|
3
|
-
refactor: true
|
|
4
3
|
---
|
|
5
4
|
|
|
6
5
|
{% include lang.html %}
|
|
@@ -55,20 +54,39 @@ refactor: true
|
|
|
55
54
|
|
|
56
55
|
{% if post.image %}
|
|
57
56
|
{% assign src = post.image.path | default: post.image %}
|
|
58
|
-
{% unless src contains '//' %}
|
|
59
|
-
{% assign src = post.media_subpath | append: '/' | append: src | replace: '//', '/' %}
|
|
60
|
-
{% endunless %}
|
|
61
57
|
|
|
62
|
-
{%
|
|
63
|
-
|
|
64
|
-
|
|
58
|
+
{% if post.media_subpath %}
|
|
59
|
+
{% unless src contains '://' %}
|
|
60
|
+
{% assign src = post.media_subpath
|
|
61
|
+
| append: '/'
|
|
62
|
+
| append: src
|
|
63
|
+
| replace: '///', '/'
|
|
64
|
+
| replace: '//', '/'
|
|
65
|
+
%}
|
|
66
|
+
{% endunless %}
|
|
67
|
+
{% endif %}
|
|
65
68
|
|
|
66
69
|
{% if post.image.lqip %}
|
|
67
|
-
{%
|
|
70
|
+
{% assign lqip = post.image.lqip %}
|
|
71
|
+
|
|
72
|
+
{% if post.media_subpath %}
|
|
73
|
+
{% unless lqip contains 'data:' %}
|
|
74
|
+
{% assign lqip = post.media_subpath
|
|
75
|
+
| append: '/'
|
|
76
|
+
| append: lqip
|
|
77
|
+
| replace: '///', '/'
|
|
78
|
+
| replace: '//', '/'
|
|
79
|
+
%}
|
|
80
|
+
{% endunless %}
|
|
81
|
+
{% endif %}
|
|
82
|
+
|
|
83
|
+
{% assign lqip_attr = 'lqip="' | append: lqip | append: '"' %}
|
|
68
84
|
{% endif %}
|
|
69
85
|
|
|
86
|
+
{% assign alt = post.image.alt | xml_escape | default: 'Preview Image' %}
|
|
87
|
+
|
|
70
88
|
<div class="col-md-5">
|
|
71
|
-
<img src="{{ src }}" alt="{{ alt }}" {{
|
|
89
|
+
<img src="{{ src }}" alt="{{ alt }}" {{ lqip_attr }}>
|
|
72
90
|
</div>
|
|
73
91
|
|
|
74
92
|
{% assign card_body_col = '7' %}
|
|
@@ -79,7 +97,7 @@ refactor: true
|
|
|
79
97
|
<h1 class="card-title my-2 mt-md-0">{{ post.title }}</h1>
|
|
80
98
|
|
|
81
99
|
<div class="card-text content mt-0 mb-3">
|
|
82
|
-
<p>{% include post-
|
|
100
|
+
<p>{% include post-summary.html %}</p>
|
|
83
101
|
</div>
|
|
84
102
|
|
|
85
103
|
<div class="post-meta flex-grow-1 d-flex align-items-end">
|
data/_layouts/post.html
CHANGED
data/_sass/base/_base.scss
CHANGED
|
@@ -103,7 +103,7 @@ main {
|
|
|
103
103
|
width: 100%;
|
|
104
104
|
height: 100%;
|
|
105
105
|
position: absolute;
|
|
106
|
-
background-color: var(--card-
|
|
106
|
+
background-color: var(--card-hover-bg);
|
|
107
107
|
opacity: 0;
|
|
108
108
|
transition: opacity 0.35s ease-in-out;
|
|
109
109
|
}
|
|
@@ -314,7 +314,14 @@ main {
|
|
|
314
314
|
|
|
315
315
|
.embed-audio {
|
|
316
316
|
width: 100%;
|
|
317
|
-
|
|
317
|
+
|
|
318
|
+
&.file {
|
|
319
|
+
display: block;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
&.spotify {
|
|
323
|
+
border-radius: 14px;
|
|
324
|
+
}
|
|
318
325
|
|
|
319
326
|
@extend %img-caption;
|
|
320
327
|
}
|
|
@@ -349,7 +356,7 @@ main {
|
|
|
349
356
|
}
|
|
350
357
|
|
|
351
358
|
.disabled {
|
|
352
|
-
color: rgb(206
|
|
359
|
+
color: rgb(206 196 196);
|
|
353
360
|
pointer-events: auto;
|
|
354
361
|
cursor: not-allowed;
|
|
355
362
|
}
|
data/_sass/base/_syntax.scss
CHANGED
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
margin-bottom: 0;
|
|
25
25
|
font-size: v.$code-font-size;
|
|
26
26
|
line-height: 1.4rem;
|
|
27
|
-
word-wrap: normal; /* Fixed Safari overflow-x */
|
|
28
27
|
}
|
|
29
28
|
|
|
30
29
|
table {
|
|
@@ -66,7 +65,7 @@ code {
|
|
|
66
65
|
&.highlighter-rouge {
|
|
67
66
|
font-size: v.$code-font-size;
|
|
68
67
|
padding: 3px 5px;
|
|
69
|
-
|
|
68
|
+
overflow-wrap: break-word;
|
|
70
69
|
border-radius: v.$radius-sm;
|
|
71
70
|
background-color: var(--inline-code-bg);
|
|
72
71
|
}
|
|
@@ -243,7 +242,7 @@ div {
|
|
|
243
242
|
}
|
|
244
243
|
|
|
245
244
|
&:not([timeout]):hover {
|
|
246
|
-
background-color:
|
|
245
|
+
background-color: rgb(128 128 128 / 37%);
|
|
247
246
|
|
|
248
247
|
i {
|
|
249
248
|
color: white;
|
data/_sass/base/_typography.scss
CHANGED
|
@@ -26,9 +26,7 @@
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
font-size: 1rem + (5 - $i) * $size-factor;
|
|
31
|
-
}
|
|
29
|
+
font-size: 1rem + (5 - $i) * $size-factor;
|
|
32
30
|
} @else {
|
|
33
31
|
font-size: 1.05rem;
|
|
34
32
|
}
|
|
@@ -238,7 +236,7 @@ main {
|
|
|
238
236
|
border-spacing: 0;
|
|
239
237
|
|
|
240
238
|
thead {
|
|
241
|
-
border-bottom: solid 2px
|
|
239
|
+
border-bottom: solid 2px rgb(210 215 217 / 75%);
|
|
242
240
|
|
|
243
241
|
th {
|
|
244
242
|
@extend %table-cell;
|
data/_sass/pages/_home.scss
CHANGED
|
@@ -134,9 +134,6 @@
|
|
|
134
134
|
.page-link {
|
|
135
135
|
color: var(--btn-patinator-text-color);
|
|
136
136
|
padding: 0 0.6rem;
|
|
137
|
-
display: -webkit-box;
|
|
138
|
-
-webkit-box-pack: center;
|
|
139
|
-
-webkit-box-align: center;
|
|
140
137
|
border-radius: 0.5rem;
|
|
141
138
|
border: 0;
|
|
142
139
|
background-color: inherit;
|
|
@@ -160,7 +157,7 @@
|
|
|
160
157
|
cursor: not-allowed;
|
|
161
158
|
|
|
162
159
|
.page-link {
|
|
163
|
-
color:
|
|
160
|
+
color: rgb(108 117 125 / 57%);
|
|
164
161
|
}
|
|
165
162
|
}
|
|
166
163
|
} /* .page-item */
|
data/_sass/themes/_dark.scss
CHANGED
|
@@ -2,33 +2,33 @@
|
|
|
2
2
|
color-scheme: dark;
|
|
3
3
|
|
|
4
4
|
/* Framework color */
|
|
5
|
-
--main-bg: rgb(27
|
|
6
|
-
--mask-bg: rgb(68
|
|
7
|
-
--main-border-color: rgb(44
|
|
5
|
+
--main-bg: rgb(27 27 30);
|
|
6
|
+
--mask-bg: rgb(68 69 70);
|
|
7
|
+
--main-border-color: rgb(44 45 45);
|
|
8
8
|
|
|
9
9
|
/* Common color */
|
|
10
|
-
--text-color: rgb(175
|
|
10
|
+
--text-color: rgb(175 176 177);
|
|
11
11
|
--text-muted-color: #868686;
|
|
12
12
|
--text-muted-highlight-color: #aeaeae;
|
|
13
13
|
--heading-color: #cccccc;
|
|
14
14
|
--label-color: #a7a7a7;
|
|
15
|
-
--blockquote-border-color: rgb(66
|
|
15
|
+
--blockquote-border-color: rgb(66 66 66);
|
|
16
16
|
--blockquote-text-color: #868686;
|
|
17
|
-
--link-color: rgb(138
|
|
18
|
-
--link-underline-color: rgb(82
|
|
17
|
+
--link-color: rgb(138 180 248);
|
|
18
|
+
--link-underline-color: rgb(82 108 150);
|
|
19
19
|
--button-bg: #1e1e1e;
|
|
20
20
|
--btn-border-color: #2e2f31;
|
|
21
21
|
--btn-backtotop-color: var(--text-color);
|
|
22
22
|
--btn-backtotop-border-color: #212122;
|
|
23
23
|
--card-header-bg: #292929;
|
|
24
|
-
--checkbox-color: rgb(118
|
|
24
|
+
--checkbox-color: rgb(118 120 121);
|
|
25
25
|
--checkbox-checked-color: var(--link-color);
|
|
26
|
-
--img-bg: radial-gradient(circle, rgb(22
|
|
26
|
+
--img-bg: radial-gradient(circle, rgb(22 22 24) 0%, rgb(32 32 32) 100%);
|
|
27
27
|
--shimmer-bg: linear-gradient(
|
|
28
28
|
90deg,
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
rgb(255 255 255 / 0%) 0%,
|
|
30
|
+
rgb(58 55 55 / 40%) 50%,
|
|
31
|
+
rgb(255 255 255 / 0%) 100%
|
|
32
32
|
);
|
|
33
33
|
|
|
34
34
|
/* Sidebar */
|
|
@@ -37,65 +37,65 @@
|
|
|
37
37
|
--sidebar-bg: #1e1e1e;
|
|
38
38
|
--sidebar-border-color: #292929;
|
|
39
39
|
--sidebar-muted-color: #868686;
|
|
40
|
-
--sidebar-active-color: rgb(255
|
|
40
|
+
--sidebar-active-color: rgb(255 255 255 / 95%);
|
|
41
41
|
--sidebar-hover-bg: #262626;
|
|
42
42
|
--sidebar-btn-bg: #232328;
|
|
43
43
|
--sidebar-btn-color: #787878;
|
|
44
|
-
--avatar-border-color: rgb(206
|
|
44
|
+
--avatar-border-color: rgb(206 206 206 / 90%);
|
|
45
45
|
|
|
46
46
|
/* Topbar */
|
|
47
|
-
--topbar-bg: rgb(27
|
|
47
|
+
--topbar-bg: rgb(27 27 30 / 64%);
|
|
48
48
|
--topbar-text-color: var(--text-color);
|
|
49
|
-
--search-border-color: rgb(55
|
|
50
|
-
--search-icon-color: rgb(100
|
|
51
|
-
--input-focus-border-color: rgb(112
|
|
49
|
+
--search-border-color: rgb(55 55 55);
|
|
50
|
+
--search-icon-color: rgb(100 102 105);
|
|
51
|
+
--input-focus-border-color: rgb(112 114 115);
|
|
52
52
|
|
|
53
53
|
/* Home page */
|
|
54
|
-
--post-list-text-color: rgb(175
|
|
54
|
+
--post-list-text-color: rgb(175 176 177);
|
|
55
55
|
--btn-patinator-text-color: var(--text-color);
|
|
56
56
|
--btn-paginator-hover-color: #2e2e2e;
|
|
57
57
|
|
|
58
58
|
/* Posts */
|
|
59
|
-
--toc-highlight: rgb(116
|
|
59
|
+
--toc-highlight: rgb(116 178 243);
|
|
60
60
|
--toc-popup-border-color: #373737;
|
|
61
|
-
--tag-hover: rgb(43
|
|
61
|
+
--tag-hover: rgb(43 56 62);
|
|
62
62
|
--tb-odd-bg: #252526; /* odd rows of the posts' table */
|
|
63
|
-
--tb-even-bg: rgb(31
|
|
63
|
+
--tb-even-bg: rgb(31 31 34); /* even rows of the posts' table */
|
|
64
64
|
--tb-border-color: var(--tb-odd-bg);
|
|
65
|
-
--footnote-target-bg: rgb(63
|
|
65
|
+
--footnote-target-bg: rgb(63 81 181);
|
|
66
66
|
--btn-share-color: #6c757d;
|
|
67
67
|
--btn-share-hover-color: #bfc1ca;
|
|
68
68
|
--card-bg: #1e1e1e;
|
|
69
|
-
--card-
|
|
70
|
-
--card-shadow: rgb(21
|
|
71
|
-
rgb(137
|
|
69
|
+
--card-hover-bg: #464d51;
|
|
70
|
+
--card-shadow: rgb(21 21 21 / 72%) 0 6px 18px 0,
|
|
71
|
+
rgb(137 135 135 / 24%) 0 0 0 1px;
|
|
72
72
|
--kbd-wrap-color: #6a6a6a;
|
|
73
73
|
--kbd-text-color: #d3d3d3;
|
|
74
74
|
--kbd-bg-color: #242424;
|
|
75
|
-
--prompt-text-color: rgb(216
|
|
76
|
-
--prompt-tip-bg: rgb(22
|
|
77
|
-
--prompt-tip-icon-color: rgb(15
|
|
78
|
-
--prompt-info-bg: rgb(7
|
|
75
|
+
--prompt-text-color: rgb(216 212 212 / 75%);
|
|
76
|
+
--prompt-tip-bg: rgb(22 60 36 / 64%);
|
|
77
|
+
--prompt-tip-icon-color: rgb(15 164 15 / 81%);
|
|
78
|
+
--prompt-info-bg: rgb(7 59 104 / 80%);
|
|
79
79
|
--prompt-info-icon-color: #0075d1;
|
|
80
|
-
--prompt-warning-bg: rgb(90
|
|
81
|
-
--prompt-warning-icon-color: rgb(255
|
|
82
|
-
--prompt-danger-bg: rgb(86
|
|
80
|
+
--prompt-warning-bg: rgb(90 69 3 / 88%);
|
|
81
|
+
--prompt-warning-icon-color: rgb(255 165 0 / 80%);
|
|
82
|
+
--prompt-danger-bg: rgb(86 28 8 / 80%);
|
|
83
83
|
--prompt-danger-icon-color: #cd0202;
|
|
84
84
|
|
|
85
85
|
/* Tags */
|
|
86
|
-
--tag-border: rgb(59
|
|
87
|
-
--tag-shadow: rgb(32
|
|
88
|
-
--dash-color: rgb(63
|
|
86
|
+
--tag-border: rgb(59 79 88);
|
|
87
|
+
--tag-shadow: rgb(32 33 33);
|
|
88
|
+
--dash-color: rgb(63 65 68);
|
|
89
89
|
--search-tag-bg: #292828;
|
|
90
90
|
|
|
91
91
|
/* Categories */
|
|
92
|
-
--categories-border: rgb(64
|
|
93
|
-
--categories-hover-bg: rgb(73
|
|
92
|
+
--categories-border: rgb(64 66 69 / 50%);
|
|
93
|
+
--categories-hover-bg: rgb(73 75 76);
|
|
94
94
|
--categories-icon-hover-color: white;
|
|
95
95
|
|
|
96
96
|
/* Archive */
|
|
97
|
-
--timeline-node-bg: rgb(150
|
|
98
|
-
--timeline-color: rgb(63
|
|
97
|
+
--timeline-node-bg: rgb(150 152 156);
|
|
98
|
+
--timeline-color: rgb(63 65 68);
|
|
99
99
|
--timeline-year-dot-color: var(--timeline-color);
|
|
100
100
|
|
|
101
101
|
/* Code highlight colors */
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
--highlight-bg-color: #151515;
|
|
104
104
|
--highlighter-rouge-color: #c9def1;
|
|
105
105
|
--highlight-lineno-color: #808080;
|
|
106
|
-
--inline-code-bg:
|
|
106
|
+
--inline-code-bg: rgb(255 255 255 / 5%);
|
|
107
107
|
--code-color: #b0b0b0;
|
|
108
108
|
--code-header-text-color: #6a6a6a;
|
|
109
109
|
--code-header-muted-color: #353535;
|
|
@@ -141,11 +141,11 @@
|
|
|
141
141
|
#archives li:nth-child(odd) {
|
|
142
142
|
background-image: linear-gradient(
|
|
143
143
|
to left,
|
|
144
|
-
rgb(26
|
|
145
|
-
rgb(39
|
|
146
|
-
rgb(39
|
|
147
|
-
rgb(39
|
|
148
|
-
rgb(26
|
|
144
|
+
rgb(26 26 30),
|
|
145
|
+
rgb(39 39 45),
|
|
146
|
+
rgb(39 39 45),
|
|
147
|
+
rgb(39 39 45),
|
|
148
|
+
rgb(26 26 30)
|
|
149
149
|
);
|
|
150
150
|
}
|
|
151
151
|
|
data/_sass/themes/_light.scss
CHANGED
|
@@ -20,34 +20,30 @@
|
|
|
20
20
|
--btn-backtotop-border-color: #f1f1f1;
|
|
21
21
|
--checkbox-color: #c5c5c5;
|
|
22
22
|
--checkbox-checked-color: #07a8f7;
|
|
23
|
-
--img-bg: radial-gradient(
|
|
24
|
-
circle,
|
|
25
|
-
rgb(255, 255, 255) 0%,
|
|
26
|
-
rgb(239, 239, 239) 100%
|
|
27
|
-
);
|
|
23
|
+
--img-bg: radial-gradient(circle, rgb(255 255 255) 0%, rgb(239 239 239) 100%);
|
|
28
24
|
--shimmer-bg: linear-gradient(
|
|
29
25
|
90deg,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
26
|
+
rgb(250 250 250 / 0%) 0%,
|
|
27
|
+
rgb(232 230 230 / 100%) 50%,
|
|
28
|
+
rgb(250 250 250 / 0%) 100%
|
|
33
29
|
);
|
|
34
30
|
|
|
35
31
|
/* Sidebar */
|
|
36
|
-
--site-title-color: rgb(113
|
|
32
|
+
--site-title-color: rgb(113 113 113);
|
|
37
33
|
--site-subtitle-color: #717171;
|
|
38
34
|
--sidebar-bg: #f6f8fa;
|
|
39
35
|
--sidebar-border-color: #efefef;
|
|
40
36
|
--sidebar-muted-color: #545454;
|
|
41
37
|
--sidebar-active-color: #1d1d1d;
|
|
42
|
-
--sidebar-hover-bg: rgb(223
|
|
38
|
+
--sidebar-hover-bg: rgb(223 233 241 / 64%);
|
|
43
39
|
--sidebar-btn-bg: white;
|
|
44
40
|
--sidebar-btn-color: #8e8e8e;
|
|
45
41
|
--avatar-border-color: white;
|
|
46
42
|
|
|
47
43
|
/* Topbar */
|
|
48
|
-
--topbar-bg: rgb(255
|
|
49
|
-
--topbar-text-color: rgb(78
|
|
50
|
-
--search-border-color: rgb(240
|
|
44
|
+
--topbar-bg: rgb(255 255 255 / 70%);
|
|
45
|
+
--topbar-text-color: rgb(78 78 78);
|
|
46
|
+
--search-border-color: rgb(240 240 240);
|
|
51
47
|
--search-icon-color: #c2c6cc;
|
|
52
48
|
--input-focus-border-color: #b8b8b8;
|
|
53
49
|
|
|
@@ -62,9 +58,9 @@
|
|
|
62
58
|
--btn-share-color: gray;
|
|
63
59
|
--btn-share-hover-color: #0d6efd;
|
|
64
60
|
--card-bg: white;
|
|
65
|
-
--card-
|
|
66
|
-
--card-shadow: rgb(104
|
|
67
|
-
|
|
61
|
+
--card-hover-bg: #e2e2e2;
|
|
62
|
+
--card-shadow: rgb(104 104 104 / 5%) 0 2px 6px 0,
|
|
63
|
+
rgb(211 209 209 / 15%) 0 0 0 1px;
|
|
68
64
|
--footnote-target-bg: lightcyan;
|
|
69
65
|
--tb-odd-bg: #fbfcfd;
|
|
70
66
|
--tb-border-color: #eaeaea;
|
|
@@ -72,29 +68,29 @@
|
|
|
72
68
|
--kbd-wrap-color: #bdbdbd;
|
|
73
69
|
--kbd-text-color: var(--text-color);
|
|
74
70
|
--kbd-bg-color: white;
|
|
75
|
-
--prompt-text-color: rgb(46
|
|
76
|
-
--prompt-tip-bg: rgb(123
|
|
71
|
+
--prompt-text-color: rgb(46 46 46 / 77%);
|
|
72
|
+
--prompt-tip-bg: rgb(123 247 144 / 20%);
|
|
77
73
|
--prompt-tip-icon-color: #03b303;
|
|
78
74
|
--prompt-info-bg: #e1f5fe;
|
|
79
75
|
--prompt-info-icon-color: #0070cb;
|
|
80
|
-
--prompt-warning-bg: rgb(255
|
|
76
|
+
--prompt-warning-bg: rgb(255 243 205);
|
|
81
77
|
--prompt-warning-icon-color: #ef9c03;
|
|
82
|
-
--prompt-danger-bg: rgb(248
|
|
78
|
+
--prompt-danger-bg: rgb(248 215 218 / 56%);
|
|
83
79
|
--prompt-danger-icon-color: #df3c30;
|
|
84
80
|
|
|
85
81
|
/* Tags */
|
|
86
82
|
--tag-border: #dee2e6;
|
|
87
83
|
--tag-shadow: var(--btn-border-color);
|
|
88
|
-
--tag-hover: rgb(222
|
|
84
|
+
--tag-hover: rgb(222 226 230);
|
|
89
85
|
--search-tag-bg: #f8f9fa;
|
|
90
86
|
|
|
91
87
|
/* Categories */
|
|
92
|
-
--categories-border:
|
|
88
|
+
--categories-border: rgb(0 0 0 / 12.5%);
|
|
93
89
|
--categories-hover-bg: var(--btn-border-color);
|
|
94
90
|
--categories-icon-hover-color: darkslategray;
|
|
95
91
|
|
|
96
92
|
/* Archive */
|
|
97
|
-
--timeline-color:
|
|
93
|
+
--timeline-color: rgb(0 0 0 / 7.5%);
|
|
98
94
|
--timeline-node-bg: #c2c6cc;
|
|
99
95
|
--timeline-year-dot-color: #ffffff;
|
|
100
96
|
|
|
@@ -103,7 +99,7 @@
|
|
|
103
99
|
--highlight-bg-color: #f6f8fa;
|
|
104
100
|
--highlighter-rouge-color: #3f596f;
|
|
105
101
|
--highlight-lineno-color: #9e9e9e;
|
|
106
|
-
--inline-code-bg:
|
|
102
|
+
--inline-code-bg: rgb(25 25 28 / 5%);
|
|
107
103
|
--code-color: #3a3a3a;
|
|
108
104
|
--code-header-text-color: #a3a3a3;
|
|
109
105
|
--code-header-muted-color: #e5e5e5;
|
|
@@ -111,7 +107,7 @@
|
|
|
111
107
|
--clipboard-checked-color: #43c743;
|
|
112
108
|
|
|
113
109
|
[class^='prompt-'] {
|
|
114
|
-
--link-underline-color: rgb(219
|
|
110
|
+
--link-underline-color: rgb(219 216 216);
|
|
115
111
|
}
|
|
116
112
|
|
|
117
113
|
.dark {
|