diff --git a/src/app/globals.css b/src/app/globals.css index fd90460..81e0ed9 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -5,14 +5,14 @@ :root { --radius: 0.65rem; - --background: oklch(1 0 0); + --background: oklch(0.985 0.01 245); --foreground: oklch(0.141 0.005 285.823); --card: oklch(1 0 0 / 0.4); --card-foreground: oklch(0.141 0.005 285.823); --popover: oklch(1 0 0); --popover-foreground: oklch(0.141 0.005 285.823); - --primary: oklch(0.541 0.281 293.009); - --primary-foreground: oklch(0.969 0.016 293.756); + --primary: oklch(0.55 0.18 250); + --primary-foreground: oklch(0.985 0.01 245); --secondary: oklch(0.967 0.001 286.375); --secondary-foreground: oklch(0.21 0.006 285.885); --muted: oklch(0.967 0.001 286.375); @@ -22,33 +22,33 @@ --destructive: oklch(0.577 0.245 27.325); --border: oklch(0.92 0.004 286.32); --input: oklch(0.92 0.004 286.32); - --ring: oklch(0.702 0.183 293.541); - --chart-1: oklch(0.65 0.18 25); /* Soft Red/Rose - High Priority */ - --chart-2: oklch(0.78 0.12 75); /* Warm Amber - Distinct */ - --chart-3: oklch(0.68 0.12 245); /* Azure Blue - Cool Professional */ - --chart-4: oklch(0.75 0.1 165); /* Mint Teal - Balanced */ - --chart-5: oklch(0.85 0.08 195); /* Soft Cyan - Subdued */ - --chart-6: oklch(0.62 0.22 295); /* Deep Violet - Theme Primary */ - --chart-8: oklch(0.58 0.2 335); /* Cool Magenta - Distant Accent */ + --ring: oklch(0.708 0 0); + --chart-1: oklch(0.7 0.16 25); + --chart-2: oklch(0.82 0.14 75); + --chart-3: oklch(0.72 0.14 245); + --chart-4: oklch(0.78 0.12 165); + --chart-5: oklch(0.88 0.1 195); + --chart-6: oklch(0.65 0.24 295); + --chart-8: oklch(0.62 0.22 335); --sidebar: oklch(0.985 0 0 / 0.6); --sidebar-foreground: oklch(0.141 0.005 285.823); - --sidebar-primary: oklch(0.541 0.281 293.009); - --sidebar-primary-foreground: oklch(0.969 0.016 293.756); + --sidebar-primary: oklch(0.546 0.245 262.881); + --sidebar-primary-foreground: oklch(0.97 0.014 254.604); --sidebar-accent: oklch(0.967 0.001 286.375); --sidebar-accent-foreground: oklch(0.21 0.006 285.885); --sidebar-border: oklch(0.92 0.004 286.32); - --sidebar-ring: oklch(0.702 0.183 293.541); + --sidebar-ring: oklch(0.708 0 0); } .dark { - --background: oklch(0.141 0.005 285.823); + --background: oklch(0.141 0.02 245); --foreground: oklch(0.985 0 0); --card: oklch(0.21 0.006 285.885 / 0.6); --card-foreground: oklch(0.985 0 0); --popover: oklch(0.21 0.006 285.885); --popover-foreground: oklch(0.985 0 0); - --primary: oklch(0.606 0.25 292.717); - --primary-foreground: oklch(0.969 0.016 293.756); + --primary: oklch(0.55 0.18 250); + --primary-foreground: oklch(0.985 0.01 245); --secondary: oklch(0.274 0.006 286.033); --secondary-foreground: oklch(0.985 0 0); --muted: oklch(0.274 0.006 286.033); @@ -58,24 +58,25 @@ --destructive: oklch(0.704 0.191 22.216); --border: oklch(1 0 0 / 10%); --input: oklch(1 0 0 / 15%); - --ring: oklch(0.38 0.189 293.745); - --chart-1: oklch(0.7 0.16 25); - --chart-2: oklch(0.82 0.14 75); - --chart-3: oklch(0.72 0.14 245); - --chart-4: oklch(0.78 0.12 165); - --chart-5: oklch(0.88 0.1 195); - --chart-6: oklch(0.65 0.24 295); - --chart-8: oklch(0.62 0.22 335); + --ring: oklch(0.556 0 0); + --chart-1: oklch(0.65 0.18 25); /* Soft Red/Rose - High Priority */ + --chart-2: oklch(0.78 0.12 75); /* Warm Amber - Distinct */ + --chart-3: oklch(0.68 0.12 245); /* Azure Blue - Cool Professional */ + --chart-4: oklch(0.75 0.1 165); /* Mint Teal - Balanced */ + --chart-5: oklch(0.85 0.08 195); /* Soft Cyan - Subdued */ + --chart-6: oklch(0.62 0.22 295); /* Deep Violet - Theme Primary */ + --chart-8: oklch(0.58 0.2 335); /* Cool Magenta - Distant Accent */ --sidebar: oklch(0.21 0.006 285.885 / 0.6); --sidebar-foreground: oklch(0.985 0 0); - --sidebar-primary: oklch(0.606 0.25 292.717); - --sidebar-primary-foreground: oklch(0.969 0.016 293.756); + --sidebar-primary: oklch(0.623 0.214 259.815); + --sidebar-primary-foreground: oklch(0.97 0.014 254.604); --sidebar-accent: oklch(0.274 0.006 286.033); --sidebar-accent-foreground: oklch(0.985 0 0); --sidebar-border: oklch(1 0 0 / 10%); - --sidebar-ring: oklch(0.38 0.189 293.745); + --sidebar-ring: oklch(0.439 0 0); } + @theme inline { --font-sans: 'Geist', 'Geist Fallback', system-ui, sans-serif; --font-mono: 'Geist Mono', 'Geist Mono Fallback', monospace; diff --git a/src/components/background-gradient.tsx b/src/components/background-gradient.tsx index 95b4051..afb7bbe 100644 --- a/src/components/background-gradient.tsx +++ b/src/components/background-gradient.tsx @@ -6,10 +6,13 @@ export function BackgroundGradient() { className="fixed inset-0 -z-10 h-full w-full overflow-hidden pointer-events-none" aria-hidden="true" > - {/* Top Gradient */} -