aboutsummaryrefslogtreecommitdiffstats
path: root/thallium-frontend/src
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-08-19 17:04:52 +0100
committerGravatar Joe Banks <[email protected]>2024-08-19 17:04:52 +0100
commit933a2edc7bbcb3bbbae2b8197becd5d0886e00ac (patch)
treea6be0dac56a3662be551921ba656e2499ab713da /thallium-frontend/src
parentSwitch from HTTPBase to HTTPBearer (diff)
Update themes
Diffstat (limited to 'thallium-frontend/src')
-rw-r--r--thallium-frontend/src/themes.tsx15
1 files changed, 14 insertions, 1 deletions
diff --git a/thallium-frontend/src/themes.tsx b/thallium-frontend/src/themes.tsx
index 6606b39..28eb134 100644
--- a/thallium-frontend/src/themes.tsx
+++ b/thallium-frontend/src/themes.tsx
@@ -7,6 +7,9 @@ interface Theme {
linkColor: string;
cardBackgroundColor: string;
cardShadow: string;
+ accent: string;
+ inputBackgroundColor: string;
+ inputPlaceholderColor: string;
}
interface ThemesStore {
@@ -14,14 +17,21 @@ interface ThemesStore {
dark: Theme;
}
+const commonTheme = {
+ accent: "#7e5da3",
+};
+
const themes: ThemesStore = {
light: {
backgroundColor: "#f0f0f0",
textColor: "#000",
borderColor: "#838383",
linkColor: "#7272ff",
- cardBackgroundColor: "#ebebeb",
+ cardBackgroundColor: "#dddddd",
cardShadow: "#d0d0d0",
+ inputBackgroundColor: "#fff",
+ inputPlaceholderColor: "#949494",
+ ...commonTheme,
},
dark: {
backgroundColor: "#333",
@@ -30,6 +40,9 @@ const themes: ThemesStore = {
linkColor: "#8f8fff",
cardBackgroundColor: "#2c2c2c",
cardShadow: "#242323",
+ inputBackgroundColor: "#444",
+ inputPlaceholderColor: "#acacac",
+ ...commonTheme,
},
};