diff options
author | 2024-08-25 04:03:09 +0100 | |
---|---|---|
committer | 2024-08-25 04:03:09 +0100 | |
commit | cdbe5eec95ee0130c805f6c3e356283e1c8cf596 (patch) | |
tree | 9e6a7c6e835d43dc3e2836a12c33276d1026e372 | |
parent | Add new store page to router (diff) |
Update themes
-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", |