diff --git a/front/src/components/Button.tsx b/front/src/components/Button.tsx index fa3fc54..05c98b8 100644 --- a/front/src/components/Button.tsx +++ b/front/src/components/Button.tsx @@ -7,6 +7,28 @@ interface ButtonProps { export default function Button({ onClick, children }: ButtonProps) { return ( - + ) } + diff --git a/front/src/index.css b/front/src/index.css new file mode 100644 index 0000000..790438d --- /dev/null +++ b/front/src/index.css @@ -0,0 +1,7 @@ +/* Define theme colors */ +:root { + --color-verydarkblue: #00204a; + --color-darkblue: #005792; + --color-lightblue: #00bbf0; + --color-yellow: #fdb44b; +} \ No newline at end of file diff --git a/front/src/main.tsx b/front/src/main.tsx index ce00332..f2884e0 100644 --- a/front/src/main.tsx +++ b/front/src/main.tsx @@ -2,7 +2,7 @@ import { BrowserRouter, Route, Routes } from "react-router"; import { createRoot } from 'react-dom/client' import MainPage from "./pages/MainPage.tsx"; import GamePage from "./pages/GamePage.tsx"; - +import './index.css' createRoot(document.getElementById('root')!).render(