25 lines
488 B
CSS
25 lines
488 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #0f172a;
|
|
--foreground: #e2e8f0;
|
|
--card: #1e293b;
|
|
--card-foreground: #e2e8f0;
|
|
--border: #334155;
|
|
--muted: #475569;
|
|
--cyan: #06b6d4;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: var(--font-geist-sans);
|
|
--font-mono: var(--font-geist-mono);
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|