diff options
Diffstat (limited to 'thallium-frontend/src/themes.tsx')
-rw-r--r-- | thallium-frontend/src/themes.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/thallium-frontend/src/themes.tsx b/thallium-frontend/src/themes.tsx index 28eb134..a763716 100644 --- a/thallium-frontend/src/themes.tsx +++ b/thallium-frontend/src/themes.tsx @@ -1,6 +1,7 @@ /* eslint-disable react-refresh/only-export-components */ interface Theme { + selectedTheme: "light" | "dark"; backgroundColor: string; textColor: string; borderColor: string; @@ -23,17 +24,19 @@ const commonTheme = { const themes: ThemesStore = { light: { + selectedTheme: "light", backgroundColor: "#f0f0f0", textColor: "#000", borderColor: "#838383", linkColor: "#7272ff", - cardBackgroundColor: "#dddddd", + cardBackgroundColor: "#dbdbdb", cardShadow: "#d0d0d0", inputBackgroundColor: "#fff", inputPlaceholderColor: "#949494", ...commonTheme, }, dark: { + selectedTheme: "dark", backgroundColor: "#333", textColor: "#fff", borderColor: "#949494", |