@tailwind base; @tailwind components; @tailwind utilities; @layer base { :root { --background: 0 0% 100%; --foreground: 222.2 84% 4.9%; --card: 0 0% 100%; --card-foreground: 222.2 84% 4.9%; --popover: 0 0% 100%; --popover-foreground: 222.2 84% 4.9%; --primary: 41 94% 49%; --primary-foreground: 41 100% 95%; --secondary: 210 40% 96.1%; --secondary-foreground: 41 94% 49%; --muted: 210 40% 96.1%; --muted-foreground: 215.4 16.3% 46.9%; /* --accent: 58 73% 66%; --accent-foreground: 41 94% 49%; */ --accent: 210 40% 96.1%; --accent-foreground: 41 94% 49%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 41 100% 95%; --border: 214.3 31.8% 91.4%; /* --input: 41 94% 49%; */ --input: 214.3 31.8% 91.4%; --ring: 222.2 84% 4.9%; --radius: 0.5rem; --text-secondary: 240 29% 17%; --text-secondary-light: 240 11% 46%; /* --text: 240 29% 17%; --text-light: 240 11% 46%; */ --orange-300: 41 100% 69%; } .dark { --background: 222.2 84% 4.9%; --foreground: 41 100% 95%; --card: 222.2 84% 4.9%; --card-foreground: 41 100% 95%; --popover: 222.2 84% 4.9%; --popover-foreground: 41 100% 95%; --primary: 41 100% 95%; --primary-foreground: 41 94% 49%; --secondary: 217.2 32.6% 17.5%; --secondary-foreground: 41 100% 95%; --muted: 217.2 32.6% 17.5%; --muted-foreground: 215 20.2% 65.1%; --accent: 217.2 32.6% 17.5%; --accent-foreground: 41 100% 95%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 41 100% 95%; --border: 217.2 32.6% 17.5%; --input: 217.2 32.6% 17.5%; --ring: 212.7 26.8% 83.9%; } } @layer base { * { @apply border-border font-montserrat scroll-smooth; } body { @apply bg-background text-foreground; } h1 { @apply text-secondary text-3xl sm:text-4xl xl:text-5xl font-extrabold; } h2 { @apply text-secondary text-2xl sm:text-3xl xl:text-4xl font-bold; } h3 { @apply text-secondary text-xl sm:text-2xl xl:text-3xl font-semibold; } h4 { @apply text-secondary text-lg sm:text-xl xl:text-2xl font-medium; } h5 { @apply text-secondary text-lg; } h6 { @apply text-secondary text-base; } }