diff options
| author | 2024-08-17 14:09:18 +0100 | |
|---|---|---|
| committer | 2024-08-17 14:09:18 +0100 | |
| commit | f084e3edec5de05918f77cd57ad46f413dcbf569 (patch) | |
| tree | fb880eef023f945d6b92bed206b6827509e627e4 | |
| parent | Explicitly pass cache path to actions/setup-node (diff) | |
Change card border colour on light theme
| -rw-r--r-- | thallium-frontend/src/App.tsx | 2 | ||||
| -rw-r--r-- | thallium-frontend/src/themes.tsx (renamed from thallium-frontend/src/themes.ts) | 4 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/thallium-frontend/src/App.tsx b/thallium-frontend/src/App.tsx index f7a30ae..bed409b 100644 --- a/thallium-frontend/src/App.tsx +++ b/thallium-frontend/src/App.tsx @@ -5,7 +5,7 @@ import {    RouterProvider,  } from "react-router-dom"; -import themes from "./themes"; +import themes from "./themes.tsx";  import Header from "./components/Header"; diff --git a/thallium-frontend/src/themes.ts b/thallium-frontend/src/themes.tsx index 92a8597..6606b39 100644 --- a/thallium-frontend/src/themes.ts +++ b/thallium-frontend/src/themes.tsx @@ -1,3 +1,5 @@ +/* eslint-disable react-refresh/only-export-components */ +  interface Theme {      backgroundColor: string;      textColor: string; @@ -16,7 +18,7 @@ const themes: ThemesStore = {      light: {          backgroundColor: "#f0f0f0",          textColor: "#000", -        borderColor: "#ccc", +        borderColor: "#838383",          linkColor: "#7272ff",          cardBackgroundColor: "#ebebeb",          cardShadow: "#d0d0d0",  |