dark mode

forgot to switch branches. Started working on dark mode by creating a theme for the app
This commit is contained in:
2025-07-10 14:59:13 +00:00
committed by vkuchenik
parent 6bb10060e5
commit 0190bf7c72
4 changed files with 20 additions and 5 deletions
+2 -1
View File
@@ -5,10 +5,11 @@ import './index.css'
import 'react-grid-layout/css/styles.css'
import 'react-resizable/css/styles.css'
import App from './App.jsx'
import theme from './theme.js'
createRoot(document.getElementById('root')).render(
<StrictMode>
<Provider>
<Provider theme={theme}>
<App />
</Provider>
</StrictMode>,