From a9b31bde30bf5d657bf80263229cd10e0275180b Mon Sep 17 00:00:00 2001 From: Ashish Dhama <16203333+AshishDhama@users.noreply.github.com> Date: Tue, 13 Feb 2024 23:02:55 +0530 Subject: [PATCH] GH-683: Fix template dark mode (#698) --- web/styles/theme.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/styles/theme.scss b/web/styles/theme.scss index 2e94fff6..ecece997 100644 --- a/web/styles/theme.scss +++ b/web/styles/theme.scss @@ -224,4 +224,9 @@ html[data-theme="dark"] { --editor-frontmatter-marker-color: #fff; --editor-widget-background-color: rgba(72, 72, 72, 0.5); --editor-task-marker-color: var(--subtle-color); + --editor-task-state-color: var(--subtle-color); + + --editor-directive-mark-color: #ba0303; + --editor-directive-color: #898989; + --editor-directive-background-color: #4c4c4c7d; } \ No newline at end of file