From bcb5b2df09cb8c8fc0736ec476b2486f9b4643be Mon Sep 17 00:00:00 2001
From: Emile Bangma <ewjbangma@hotmail.com>
Date: Mon, 04 Mar 2024 17:52:28 +0000
Subject: [PATCH] feat(frontmatter): configure max length for description (#946)
---
quartz/util/theme.ts | 19 ++++++++++++-------
1 files changed, 12 insertions(+), 7 deletions(-)
diff --git a/quartz/util/theme.ts b/quartz/util/theme.ts
index 8d7b727..49cc9cc 100644
--- a/quartz/util/theme.ts
+++ b/quartz/util/theme.ts
@@ -9,18 +9,23 @@
highlight: string
}
+interface Colors {
+ lightMode: ColorScheme
+ darkMode: ColorScheme
+}
+
export interface Theme {
typography: {
header: string
body: string
code: string
}
- colors: {
- lightMode: ColorScheme
- darkMode: ColorScheme
- }
+ cdnCaching: boolean
+ 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"
@@ -44,9 +49,9 @@
--tertiary: ${theme.colors.lightMode.tertiary};
--highlight: ${theme.colors.lightMode.highlight};
- --headerFont: ${theme.typography.header}, ${DEFAULT_SANS_SERIF};
- --bodyFont: ${theme.typography.body}, ${DEFAULT_SANS_SERIF};
- --codeFont: ${theme.typography.code}, ${DEFAULT_MONO};
+ --headerFont: "${theme.typography.header}", ${DEFAULT_SANS_SERIF};
+ --bodyFont: "${theme.typography.body}", ${DEFAULT_SANS_SERIF};
+ --codeFont: "${theme.typography.code}", ${DEFAULT_MONO};
}
:root[saved-theme="dark"] {
--
Gitblit v1.10.0