25 lines
400 B
CSS
25 lines
400 B
CSS
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--foreground: #171717;
|
||
|
|
--background: #ffffff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.dark {
|
||
|
|
--foreground: #ededed;
|
||
|
|
--background: #0a0a0a;
|
||
|
|
}
|
||
|
|
|
||
|
|
html {
|
||
|
|
scroll-behavior: smooth;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
color: var(--foreground);
|
||
|
|
background: var(--background);
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
||
|
|
'Helvetica Neue', Arial, sans-serif;
|
||
|
|
}
|