add frontend work

This commit is contained in:
2024-10-15 23:52:21 -05:00
parent d7aa949cad
commit a72e2123bf
4 changed files with 91 additions and 0 deletions

20
frontend/src/App.css Normal file
View File

@@ -0,0 +1,20 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background-color: #fff;
--text-color: #111;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: rgb(20, 20, 20);
--text-color: rgb(230, 230, 230);
}
}
body {
background-color: var(--background-color);
color: var(--text-color);
}