| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- @import "tailwindcss";
- @import "tw-animate-css";
- @custom-variant dark (&:is(.dark *));
- :root {
- /* Updated color tokens to match AI painting educational theme */
- --background: #ffffff;
- --foreground: #374151;
- --card: #f0fdf4;
- --card-foreground: #374151;
- --popover: #ffffff;
- --popover-foreground: #374151;
- --primary: #15803d;
- --primary-foreground: #ffffff;
- --secondary: #84cc16;
- --secondary-foreground: #374151;
- --muted: #f0fdf4;
- --muted-foreground: #4b5563;
- --accent: #84cc16;
- --accent-foreground: #374151;
- --destructive: #dc2626;
- --destructive-foreground: #ffffff;
- --border: #e5e7eb;
- --input: #ffffff;
- --ring: rgba(21, 128, 61, 0.5);
- --chart-1: #15803d;
- --chart-2: #84cc16;
- --chart-3: #dc2626;
- --chart-4: #f97316;
- --chart-5: #ea580c;
- --radius: 0.5rem;
- --sidebar: #f0fdf4;
- --sidebar-foreground: #374151;
- --sidebar-primary: #15803d;
- --sidebar-primary-foreground: #ffffff;
- --sidebar-accent: #84cc16;
- --sidebar-accent-foreground: #374151;
- --sidebar-border: #e5e7eb;
- --sidebar-ring: rgba(21, 128, 61, 0.5);
- }
- .dark {
- /* Updated dark mode colors to maintain consistency */
- --background: #0f172a;
- --foreground: #f1f5f9;
- --card: #1e293b;
- --card-foreground: #f1f5f9;
- --popover: #1e293b;
- --popover-foreground: #f1f5f9;
- --primary: #22c55e;
- --primary-foreground: #0f172a;
- --secondary: #a3e635;
- --secondary-foreground: #0f172a;
- --muted: #1e293b;
- --muted-foreground: #94a3b8;
- --accent: #a3e635;
- --accent-foreground: #0f172a;
- --destructive: #ef4444;
- --destructive-foreground: #f1f5f9;
- --border: #334155;
- --input: #1e293b;
- --ring: rgba(34, 197, 94, 0.5);
- --chart-1: #22c55e;
- --chart-2: #a3e635;
- --chart-3: #ef4444;
- --chart-4: #f97316;
- --chart-5: #ea580c;
- --sidebar: #1e293b;
- --sidebar-foreground: #f1f5f9;
- --sidebar-primary: #22c55e;
- --sidebar-primary-foreground: #0f172a;
- --sidebar-accent: #a3e635;
- --sidebar-accent-foreground: #0f172a;
- --sidebar-border: #334155;
- --sidebar-ring: rgba(34, 197, 94, 0.5);
- }
- @theme inline {
- --color-background: var(--background);
- --color-foreground: var(--foreground);
- --color-card: var(--card);
- --color-card-foreground: var(--card-foreground);
- --color-popover: var(--popover);
- --color-popover-foreground: var(--popover-foreground);
- --color-primary: var(--primary);
- --color-primary-foreground: var(--primary-foreground);
- --color-secondary: var(--secondary);
- --color-secondary-foreground: var(--secondary-foreground);
- --color-muted: var(--muted);
- --color-muted-foreground: var(--muted-foreground);
- --color-accent: var(--accent);
- --color-accent-foreground: var(--accent-foreground);
- --color-destructive: var(--destructive);
- --color-destructive-foreground: var(--destructive-foreground);
- --color-border: var(--border);
- --color-input: var(--input);
- --color-ring: var(--ring);
- --color-chart-1: var(--chart-1);
- --color-chart-2: var(--chart-2);
- --color-chart-3: var(--chart-3);
- --color-chart-4: var(--chart-4);
- --color-chart-5: var(--chart-5);
- --radius-sm: calc(var(--radius) - 4px);
- --radius-md: calc(var(--radius) - 2px);
- --radius-lg: var(--radius);
- --radius-xl: calc(var(--radius) + 4px);
- --color-sidebar: var(--sidebar);
- --color-sidebar-foreground: var(--sidebar-foreground);
- --color-sidebar-primary: var(--sidebar-primary);
- --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
- --color-sidebar-accent: var(--sidebar-accent);
- --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
- --color-sidebar-border: var(--sidebar-border);
- --color-sidebar-ring: var(--sidebar-ring);
- /* Added custom font family variables for educational design */
- --font-heading: "Playfair Display", serif;
- --font-body: "Source Sans Pro", sans-serif;
- }
- @layer base {
- * {
- @apply border-border outline-ring/50;
- }
- body {
- @apply bg-background text-foreground;
- }
- }
|