Skip to content

Commit

Permalink
update markdown syntax theme
Browse files Browse the repository at this point in the history
  • Loading branch information
zmh-program committed Nov 27, 2023
1 parent 94f714e commit 3c6cc4a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions app/src/assets/globals.less
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@
--input-unread: 37 26% 70%;
--ring: 222.2 84% 4.9%;
--text: 0 0% 0%;
--text-dark: 0 0% 100%;
--text-secondary: 0 0% 20%;
--text-secondary-dark: 0 0% 80%;

--radius: 0.5rem;

Expand Down
5 changes: 3 additions & 2 deletions app/src/assets/markdown/all.less
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
user-select: none;

p {
color: hsl(var(--text-secondary-dark));
font-size: 12px;
line-height: 1;
margin: 0 0 0 6px;
Expand All @@ -75,11 +76,11 @@

svg {
cursor: pointer;
color: hsl(var(--text-secondary));
color: hsl(var(--text-secondary-dark));
transition: .2s;

&:hover {
color: hsl(var(--text));
color: hsl(var(--text-dark));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from "@/utils/env.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 deploy: boolean = true;
export let rest_api: string = getRestApi(deploy);
Expand Down

0 comments on commit 3c6cc4a

Please sign in to comment.