From 7db2eda76cf51fd631d385c12a7b411339406067 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun, 23 Jul 2023 00:27:41 +0000
Subject: [PATCH] run prettier

---
 quartz/theme.ts |   25 +++++++++++++------------
 1 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/quartz/theme.ts b/quartz/theme.ts
index 820519f..2860e2c 100644
--- a/quartz/theme.ts
+++ b/quartz/theme.ts
@@ -1,27 +1,28 @@
 export interface ColorScheme {
-  light: string,
-  lightgray: string,
-  gray: string,
-  darkgray: string,
-  dark: string,
-  secondary: string,
-  tertiary: string,
+  light: string
+  lightgray: string
+  gray: string
+  darkgray: string
+  dark: string
+  secondary: string
+  tertiary: string
   highlight: string
 }
 
 export interface Theme {
   typography: {
-    header: string,
-    body: string,
+    header: string
+    body: string
     code: string
-  },
+  }
   colors: {
-    lightMode: ColorScheme,
+    lightMode: ColorScheme
     darkMode: ColorScheme
   }
 }
 
-const DEFAULT_SANS_SERIF = "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif"
+const DEFAULT_SANS_SERIF =
+  '-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif'
 const DEFAULT_MONO = "ui-monospace, SFMono-Regular, SF Mono, Menlo, monospace"
 export function googleFontHref(theme: Theme) {
   const { code, header, body } = theme.typography

--
Gitblit v1.10.0