From f42bd53cff10017581e535197df9494e07acf670 Mon Sep 17 00:00:00 2001 From: Paul Huliganga Date: Thu, 26 Mar 2026 16:24:40 -0400 Subject: [PATCH] feat(ui): establish theme tokens and global base styles --- frontend/src/App.tsx | 7 +- frontend/src/index.css | 191 +++++++++++++++++++++++++++++++---------- frontend/src/theme.ts | 98 +++++++++++++-------- 3 files changed, 209 insertions(+), 87 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 4e2053b..55d3e06 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -8,7 +8,6 @@ import { ErrorBoundary } from './components/ErrorBoundary'; import { ToastContainer } from './components/Toast'; import { useToast } from './hooks/useToast'; import { createContext, useContext } from 'react'; -import { colors, radius } from './theme'; // Create toast context to share toast functionality across the app interface ToastContextType { @@ -48,10 +47,10 @@ function App() { return ( -
+
-
+
@@ -85,7 +84,7 @@ function App() { -