add build serve and start on other things
All checks were successful
Code quality checks / biome (push) Successful in 7s
All checks were successful
Code quality checks / biome (push) Successful in 7s
This commit is contained in:
parent
d1b1d0aeb5
commit
2552d305da
22 changed files with 281 additions and 74 deletions
26
src/views/css/global.css
Normal file
26
src/views/css/global.css
Normal file
|
@ -0,0 +1,26 @@
|
|||
:root {
|
||||
--background: #f4f4f4;
|
||||
--text: #000;
|
||||
--input-background: #fff;
|
||||
--input-border: #ccc;
|
||||
--button-background: #4f46e5;
|
||||
--button-hover-background: #4338ca;
|
||||
--button-text: #fff;
|
||||
}
|
||||
|
||||
:root[data-theme="dark"] {
|
||||
--background: #18181b;
|
||||
--text: #f9fafb;
|
||||
--input-background: #27272a;
|
||||
--input-border: #3f3f46;
|
||||
--button-background: #6366f1;
|
||||
--button-hover-background: #4f46e5;
|
||||
--button-text: #fff;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: var(--background);
|
||||
color: var(--text);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue