@tailwind base; @tailwind components; @tailwind utilities; /* ====== shadcn/ui theme (light + dark) ====== */ :root { --background: 210 40% 98%; --foreground: 220 15% 15%; /* โทน “น้ำทะเล” ตามธีมของคุณ */ --primary: 199 90% 40%; --primary-foreground: 0 0% 100%; --secondary: 199 60% 92%; --secondary-foreground: 220 15% 20%; --muted: 210 20% 96%; --muted-foreground: 220 10% 35%; --accent: 199 95% 48%; --accent-foreground: 0 0% 100%; --destructive: 0 84% 60%; --destructive-foreground: 0 0% 100%; --card: 0 0% 100%; --card-foreground: 220 15% 15%; --popover: 0 0% 100%; --popover-foreground: 220 15% 15%; --border: 214 32% 91%; --input: 214 32% 91%; --ring: 199 90% 40%; --radius: 0.8rem; /* โค้งมนตามแนวทาง UI ของโปรเจ็ค */ } .dark { --background: 220 18% 10%; --foreground: 0 0% 100%; --primary: 199 95% 58%; --primary-foreground: 220 18% 10%; --secondary: 218 14% 20%; --secondary-foreground: 0 0% 100%; --muted: 220 14% 18%; --muted-foreground: 220 10% 70%; --accent: 199 95% 62%; --accent-foreground: 220 18% 10%; --destructive: 0 62% 46%; --destructive-foreground: 0 0% 100%; --card: 220 18% 12%; --card-foreground: 0 0% 100%; --popover: 220 18% 12%; --popover-foreground: 0 0% 100%; --border: 220 14% 28%; --input: 220 14% 28%; --ring: 199 95% 62%; } /* Base styling */ @layer base { * { @apply border-border; } html, body { @apply h-full; } body { @apply bg-background text-foreground antialiased; } } /* Utility: container max width (ช่วยเรื่อง layout) */ .container { @apply mx-auto px-4; }