update markdown syntax theme

This commit is contained in:
Zhang Minghan 2023-11-27 18:27:49 +08:00
parent 94f714e25e
commit 3c6cc4aaac
3 changed files with 6 additions and 3 deletions

View File

@ -38,7 +38,9 @@
--input-unread: 37 26% 70%; --input-unread: 37 26% 70%;
--ring: 222.2 84% 4.9%; --ring: 222.2 84% 4.9%;
--text: 0 0% 0%; --text: 0 0% 0%;
--text-dark: 0 0% 100%;
--text-secondary: 0 0% 20%; --text-secondary: 0 0% 20%;
--text-secondary-dark: 0 0% 80%;
--radius: 0.5rem; --radius: 0.5rem;

View File

@ -67,6 +67,7 @@
user-select: none; user-select: none;
p { p {
color: hsl(var(--text-secondary-dark));
font-size: 12px; font-size: 12px;
line-height: 1; line-height: 1;
margin: 0 0 0 6px; margin: 0 0 0 6px;
@ -75,11 +76,11 @@
svg { svg {
cursor: pointer; cursor: pointer;
color: hsl(var(--text-secondary)); color: hsl(var(--text-secondary-dark));
transition: .2s; transition: .2s;
&:hover { &:hover {
color: hsl(var(--text)); color: hsl(var(--text-dark));
} }
} }
} }

View File

@ -8,7 +8,7 @@ import {
} from "@/utils/env.ts"; } from "@/utils/env.ts";
import { getMemory } from "@/utils/memory.ts"; import { getMemory } from "@/utils/memory.ts";
export const version = "3.6.35"; export const version = "3.6.36";
export const dev: boolean = getDev(); export const dev: boolean = getDev();
export const deploy: boolean = true; export const deploy: boolean = true;
export let rest_api: string = getRestApi(deploy); export let rest_api: string = getRestApi(deploy);