refactor(index): remove light mode

This commit is contained in:
z0x 2025-04-09 20:42:34 -04:00
parent 8b3c009de7
commit 18df241880
14 changed files with 190 additions and 748 deletions

View file

@ -1,15 +1,10 @@
@import "tailwindcss";
@import "tw-animate-css";
@custom-variant dark (&:is(.dark *));
@theme {
--font-sans: "Geist Variable", sans-serif;
}
@layer base {
* {
@apply border-border outline-ring/50;
}
body {
cursor: var(--cursor-url) 28 32, auto;
@apply flex overflow-hidden flex-col items-center min-h-screen;
@ -21,38 +16,7 @@
}
:root {
--cursor-light: url("/cursor-light.svg");
--cursor-dark: url("/cursor-dark.svg");
--cursor-url: var(--cursor-light);
--background: hsl(0 0% 100%);
--foreground: hsl(240 10% 3.9%);
--card: hsl(0 0% 100%);
--card-foreground: hsl(240 10% 3.9%);
--popover: hsl(0 0% 100%);
--popover-foreground: hsl(240 10% 3.9%);
--primary: hsl(240 5.9% 10%);
--primary-foreground: hsl(0 0% 98%);
--secondary: hsl(240 4.8% 95.9%);
--secondary-foreground: hsl(240 5.9% 10%);
--muted: hsl(240 4.8% 95.9%);
--muted-foreground: hsl(240 3.8% 46.1%);
--accent: hsl(240 4.8% 95.9%);
--accent-foreground: hsl(240 5.9% 10%);
--destructive: hsl(0 84.2% 60.2%);
--destructive-foreground: hsl(0 0% 98%);
--border: hsl(240 5.9% 90%);
--input: hsl(240 5.9% 90%);
--ring: hsl(240 10% 3.9%);
--chart-1: hsl(12 76% 61%);
--chart-2: hsl(173 58% 39%);
--chart-3: hsl(197 37% 24%);
--chart-4: hsl(43 74% 66%);
--chart-5: hsl(27 87% 67%);
--radius: 0.6rem;
}
.dark {
--cursor-url: var(--cursor-dark);
--cursor-url: url("/cursor.svg");
--background: hsl(240 10% 3.9%);
--foreground: hsl(0 0% 98%);
--card: hsl(240 10% 3.9%);
@ -77,6 +41,7 @@
--chart-3: hsl(30 80% 55%);
--chart-4: hsl(280 65% 60%);
--chart-5: hsl(340 75% 55%);
--radius: 0.6rem;
}
@theme inline {