From a13d8e84b250a0e0bcb5d34e52f161e796e3a2fb Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 04 Mar 2024 20:54:21 +0000
Subject: [PATCH] chore(deps): bump lightningcss from 1.23.0 to 1.24.0 (#961)
---
quartz/util/theme.ts | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/quartz/util/theme.ts b/quartz/util/theme.ts
index bd0da5f..49cc9cc 100644
--- a/quartz/util/theme.ts
+++ b/quartz/util/theme.ts
@@ -9,6 +9,11 @@
highlight: string
}
+interface Colors {
+ lightMode: ColorScheme
+ darkMode: ColorScheme
+}
+
export interface Theme {
typography: {
header: string
@@ -16,12 +21,11 @@
code: string
}
cdnCaching: boolean
- colors: {
- lightMode: ColorScheme
- darkMode: ColorScheme
- }
+ colors: Colors
}
+export type ThemeKey = keyof Colors
+
const DEFAULT_SANS_SERIF =
'-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif'
const DEFAULT_MONO = "ui-monospace, SFMono-Regular, SF Mono, Menlo, monospace"
--
Gitblit v1.10.0