/**
* Morandi · 莫兰迪 — UI Lab palette (Soft & Muted)
*
* Grays that remember being colors — dusty green, muted rose and warm greige, all hushed to a whisper.
*
* Best for: Lifestyle and home brands, women-focused products, portfolio sites, wellness apps
*
* - 60-30-10: greige background 60%, cards and whitespace 30%, gray-green primary plus dusty-rose accent ≤10% combined
* - Cap saturation at ~25% across the board; keep hues close and step lightness instead (#EAE6E0 → #DAD3C9 → #8E877C → #4C4842)
* - No pure black text: warm charcoal #4C4842 gives ~9:1 contrast on the background — readable without the sting
* - Off-white #F7F6F2 on the #97A094 button, never pure white, to keep the foggy feel
* - Limit the #C0A9A2 accent to two appearances per screen or the hush falls apart
*
* Paste this below `@import "tailwindcss";` in your globals.css. This
* is a single light/dark-agnostic theme — if this palette is from the
* "dark" group, its colors already are the dark theme. Pairs with UI
* Lab's /theme.css theme layer if you're using it.
*/
:root {
--background: #EAE6E0; /* bg */
--foreground: #4C4842; /* text */
--card: #F4F1EB; /* surface */
--muted-foreground: #8E877C; /* muted */
--border: #DAD3C9; /* border */
--primary: #97A094; /* primary */
--primary-foreground: #F7F6F2; /* primaryFg */
--accent: #C0A9A2; /* accent */
/* Derived — full shadcn token coverage so this block is drop-in for any shadcn project */
--card-foreground: #4C4842;
--popover: #F4F1EB;
--popover-foreground: #4C4842;
--secondary: #F4F1EB;
--secondary-foreground: #4C4842;
--muted: #F4F1EB;
--accent-foreground: #4C4842;
--input: #DAD3C9;
--border-strong: color-mix(in oklab, #DAD3C9 78%, #4C4842 22%);
--ring: color-mix(in oklab, #DAD3C9 78%, #4C4842 22%);
/* --destructive: not set — this palette has no danger role; keep your project's default */
}