/* Bleached.me Theme - Warm skin tone palette (cream/pink and brown) */
:root {
  /* Warm skin tone inspired theme */
  --background: #fef2f0; /* Soft pink-cream (light skin tone) */
  --surface-secondary: #ffe5dd; /* Peachy pink */
  --foreground: #3e2723; /* Deep rich brown (dark text) */
  --accent: #d4a574; /* Warm tan/beige accent */
  --muted-dark: #2c1810; /* Deep chocolate brown */
  --border-color: #f5d5ca; /* Soft peachy border */
  --text-muted: #8d6e5a; /* Muted brown text */
  color-scheme: light;
}

/* Light theme explicit */
:root[data-theme="light"] {
  --background: #fef2f0;
  --surface-secondary: #ffe5dd;
  --foreground: #3e2723;
  --accent: #d4a574;
  --muted-dark: #2c1810;
  --border-color: #f5d5ca;
  --text-muted: #8d6e5a;
  color-scheme: light;
}

/* Compatibility variables used by layout.tsx */
:root, :root[data-theme="light"] {
  --surface-header: rgba(254,242,240,0.95);
  --surface-footer: rgba(254,242,240,0.9);
  --text-subtle: #8d6e5a;
}
