Skip to content

Commit dae87ca

Browse files
committed
fix
1 parent bba9d4d commit dae87ca

File tree

9 files changed

+21
-18
lines changed

9 files changed

+21
-18
lines changed

assets/css/global.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ input[type="search"]::-ms-clear {
4040
display: none;
4141
}
4242
.prose {
43+
code {
44+
@apply !bg-gray-100;
45+
}
4346
& .highlight,
4447
& :not(pre) > code {
4548
.dark & {

assets/css/syntax-light.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,43 +42,43 @@
4242
}
4343
/* Keyword */
4444
.k {
45-
color: var(--color-yellow-500);
45+
color: var(--color-yellow-700);
4646
}
4747
/* KeywordConstant */
4848
.kc {
4949
color: var(--color-violet-400);
5050
}
5151
/* KeywordDeclaration */
5252
.kd {
53-
color: var(--color-yellow-500);
53+
color: var(--color-yellow-700);
5454
}
5555
/* KeywordNamespace */
5656
.kn {
57-
color: var(--color-yellow-500);
57+
color: var(--color-yellow-700);
5858
}
5959
/* KeywordPseudo */
6060
.kp {
61-
color: var(--color-yellow-500);
61+
color: var(--color-yellow-700);
6262
}
6363
/* KeywordReserved */
6464
.kr {
65-
color: var(--color-yellow-500);
65+
color: var(--color-yellow-700);
6666
}
6767
/* KeywordType */
6868
.kt {
69-
color: var(--color-yellow-500);
69+
color: var(--color-yellow-700);
7070
}
7171
/* Name */
7272
.n {
7373
color: var(--color-violet-400);
7474
}
7575
/* NameAttribute */
7676
.na {
77-
color: var(--color-yellow-500);
77+
color: var(--color-yellow-700);
7878
}
7979
/* NameBuiltin */
8080
.nb {
81-
color: var(--color-yellow-500);
81+
color: var(--color-yellow-800);
8282
}
8383
/* NameBuiltinPseudo */
8484
.bp {
@@ -98,7 +98,7 @@
9898
}
9999
/* NameEntity */
100100
.ni {
101-
color: var(--color-yellow-500);
101+
color: var(--color-yellow-700);
102102
}
103103
/* NameException */
104104
.ne {
@@ -250,7 +250,7 @@
250250
}
251251
/* OperatorWord */
252252
.ow {
253-
color: var(--color-yellow-500);
253+
color: var(--color-yellow-700);
254254
}
255255
/* Punctuation */
256256
.p {

layouts/partials/admonitions/icons/error.svg

Lines changed: 1 addition & 1 deletion
Loading

layouts/partials/admonitions/icons/important.svg

Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 2 additions & 2 deletions
Loading

layouts/partials/admonitions/icons/lightbulb.svg

Lines changed: 1 addition & 1 deletion
Loading

layouts/partials/admonitions/icons/warning.svg

Lines changed: 1 addition & 1 deletion
Loading

layouts/partials/breadcrumbs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
id="breadcrumbs"
33
{{- $breadcrumbTitles := slice }}
44
data-pagefind-ignore
5-
class="mb-4 flex min-w-0 items-center gap-3 text-gray-200 dark:text-gray-500"
5+
class="mb-4 flex min-w-0 items-center gap-3 text-gray-200 dark:text-gray-300"
66
>
77
{{ range .Ancestors.Reverse }}
88
{{ $breadcrumbTitles = $breadcrumbTitles | append .LinkTitle }}

layouts/partials/sidebar/sections.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
{{- end }}
3333
{{- range .Params.sidebar.groups }}
3434
<!-- Main titles -->
35-
<li class="navbar-group-font-title mt-2 px-2 py-2 pt-5 pb-1">
35+
<li class="navbar-group-font-title mt-2 px-2 py-2 pt-5 pb-2">
3636
{{ . }}
3737
</li>
3838
{{- range where $pages "Params.sidebar.group" . }}

0 commit comments

Comments
 (0)