mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
29 lines
449 B
CSS
29 lines
449 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #0a0a0a;
|
|
--foreground: #ededed;
|
|
}
|
|
}
|
|
|
|
@theme {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
}
|
|
|
|
body {
|
|
@apply bg-background text-foreground flex;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
#root {
|
|
width: 100%;
|
|
min-height: 100dvh;
|
|
}
|