60 lines
1.2 KiB
CSS
60 lines
1.2 KiB
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #09090b;
|
|
--panel: #ffffff;
|
|
--muted: #71717a;
|
|
--muted-foreground: #71717a;
|
|
--border: #e4e4e7;
|
|
--input: #e4e4e7;
|
|
--ring: #a1a1aa;
|
|
--primary: #18181b;
|
|
--primary-foreground: #fafafa;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #09090b;
|
|
--foreground: #fafafa;
|
|
--panel: #09090b;
|
|
--muted: #a1a1aa;
|
|
--muted-foreground: #a1a1aa;
|
|
--border: #27272a;
|
|
--input: #27272a;
|
|
--ring: #52525b;
|
|
--primary: #fafafa;
|
|
--primary-foreground: #18181b;
|
|
}
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-border: var(--border);
|
|
--color-input: var(--input);
|
|
--color-ring: var(--ring);
|
|
--color-primary: var(--primary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--font-sans: var(--font-geist-sans);
|
|
--font-mono: var(--font-geist-mono);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-height: 100%;
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
pre,
|
|
code {
|
|
font-family: var(--font-geist-mono), monospace;
|
|
}
|