41 lines
914 B
CSS
41 lines
914 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
--card: #ffffff;
|
|
--card-foreground: #171717;
|
|
--primary: #3b82f6;
|
|
--primary-foreground: #ffffff;
|
|
--secondary: #f3f4f6;
|
|
--secondary-foreground: #171717;
|
|
--muted: #f3f4f6;
|
|
--muted-foreground: #6b7280;
|
|
--border: #e5e7eb;
|
|
--ring: #3b82f6;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #0a0a0a;
|
|
--foreground: #ededed;
|
|
--card: #171717;
|
|
--card-foreground: #ededed;
|
|
--primary: #3b82f6;
|
|
--primary-foreground: #ffffff;
|
|
--secondary: #262626;
|
|
--secondary-foreground: #ededed;
|
|
--muted: #262626;
|
|
--muted-foreground: #a3a3a3;
|
|
--border: #262626;
|
|
--ring: #3b82f6;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
"Helvetica Neue", Arial, sans-serif;
|
|
}
|