mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-18 02:12:18 -06:00
add frontend work
This commit is contained in:
20
frontend/src/App.css
Normal file
20
frontend/src/App.css
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user