diff --git a/app/globals.css b/app/globals.css
index de6bb2c..8484040 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -4,39 +4,38 @@
@custom-variant dark (&:is(.dark *));
:root {
- --background: oklch(1 0 0);
- --foreground: oklch(0.145 0 0);
+ --background: oklch(0.98 0.01 260);
+ --foreground: oklch(0.2 0.02 260);
+
--card: oklch(1 0 0);
- --card-foreground: oklch(0.145 0 0);
+ --card-foreground: oklch(0.2 0.02 260);
+
--popover: oklch(1 0 0);
- --popover-foreground: oklch(0.145 0 0);
- --primary: oklch(0.205 0 0);
- --primary-foreground: oklch(0.985 0 0);
- --secondary: oklch(0.97 0 0);
- --secondary-foreground: oklch(0.205 0 0);
- --muted: oklch(0.97 0 0);
- --muted-foreground: oklch(0.556 0 0);
- --accent: oklch(0.97 0 0);
- --accent-foreground: oklch(0.205 0 0);
- --destructive: oklch(0.577 0.245 27.325);
- --destructive-foreground: oklch(0.577 0.245 27.325);
- --border: oklch(0.922 0 0);
- --input: oklch(0.922 0 0);
- --ring: oklch(0.708 0 0);
- --chart-1: oklch(0.646 0.222 41.116);
- --chart-2: oklch(0.6 0.118 184.704);
- --chart-3: oklch(0.398 0.07 227.392);
- --chart-4: oklch(0.828 0.189 84.429);
- --chart-5: oklch(0.769 0.188 70.08);
- --radius: 0.625rem;
- --sidebar: oklch(0.985 0 0);
- --sidebar-foreground: oklch(0.145 0 0);
- --sidebar-primary: oklch(0.205 0 0);
- --sidebar-primary-foreground: oklch(0.985 0 0);
- --sidebar-accent: oklch(0.97 0 0);
- --sidebar-accent-foreground: oklch(0.205 0 0);
- --sidebar-border: oklch(0.922 0 0);
- --sidebar-ring: oklch(0.708 0 0);
+ --popover-foreground: oklch(0.2 0.02 260);
+
+ --primary: oklch(0.55 0.22 285);
+ --primary-foreground: oklch(0.98 0 0);
+
+ --secondary: oklch(0.55 0.18 200);
+ --secondary-foreground: oklch(0.25 0.02 260);
+
+ --muted: oklch(0.94 0.02 260);
+ --muted-foreground: oklch(0.5 0.02 260);
+
+ --accent: oklch(0.6 0.2 195);
+ --accent-foreground: oklch(0.25 0.02 260);
+
+ --destructive: oklch(0.6 0.25 25);
+ --destructive-foreground: oklch(0.98 0 0);
+
+ --border: oklch(0.9 0.02 260);
+ --input: oklch(0.9 0.02 260);
+ --ring: oklch(0.6 0.2 285);
+
+ --sidebar: oklch(0.96 0.01 260);
+ --sidebar-foreground: oklch(0.2 0.02 260);
+
+ --radius: 0.75rem;
}
.dark {
diff --git a/components/navbar.tsx b/components/navbar.tsx
index bbc991e..e9edc75 100644
--- a/components/navbar.tsx
+++ b/components/navbar.tsx
@@ -4,6 +4,7 @@ import Link from 'next/link'
import { Button } from '@/components/ui/button'
import { Menu, X } from 'lucide-react'
import { useState } from 'react'
+import { ThemeToggle } from './ui/ThemeToggle'
export function Navbar() {
const [mobileMenuOpen, setMobileMenuOpen] = useState(false)
@@ -39,6 +40,7 @@ export function Navbar() {
+