From 2bd7007b459c256d60075755ce08b6b34be5bd41 Mon Sep 17 00:00:00 2001 From: arvinxx Date: Fri, 17 Feb 2023 23:10:19 +0800 Subject: [PATCH] =?UTF-8?q?:label:=20fix:=20ThemeAppearance=20=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E6=94=AF=E6=8C=81=E8=87=AA=E5=AE=9A=E4=B9=89=E5=AD=97?= =?UTF-8?q?=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/appearance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/appearance.ts b/src/types/appearance.ts index 7c0159e8..8c4228c6 100644 --- a/src/types/appearance.ts +++ b/src/types/appearance.ts @@ -1,3 +1,3 @@ -export type ThemeAppearance = 'dark' | 'light'; +export type ThemeAppearance = 'dark' | 'light' | string; export type ThemeMode = 'auto' | 'dark' | 'light';