aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-08-25 04:03:09 +0100
committerGravatar Joe Banks <[email protected]>2024-08-25 04:03:09 +0100
commitcdbe5eec95ee0130c805f6c3e356283e1c8cf596 (patch)
tree9e6a7c6e835d43dc3e2836a12c33276d1026e372
parentAdd new store page to router (diff)
Update themes
-rw-r--r--thallium-frontend/src/themes.tsx5
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",