/* Bleached.me Theme - Cool, clean palette */
:root {
  /* Cool, minimalist theme */
  --background: #f8f9fa; /* Cool light gray */
  --surface-secondary: #e9ecef; /* Light cool gray */
  --foreground: #212529; /* Near black text */
  --accent: #6c757d; /* Cool gray accent */
  --muted-dark: #000000; /* True black */
  --border-color: #dee2e6; /* Cool border */
  --text-muted: #6c757d; /* Muted gray text */
  color-scheme: light;
}

/* Light theme explicit */
:root[data-theme="light"] {
  --background: #f8f9fa;
  --surface-secondary: #e9ecef;
  --foreground: #212529;
  --accent: #6c757d;
  --muted-dark: #000000;
  --border-color: #dee2e6;
  --text-muted: #6c757d;
  color-scheme: light;
}

/* Compatibility variables used by layout.tsx */
:root, :root[data-theme="light"] {
  --surface-header: rgba(248,249,250,0.9);
  --surface-footer: rgba(248,249,250,0.8);
  --text-subtle: #6c757d;
}
