diff options
| -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",  |