/* framework/client/public/assets/static-site-theme.css */
/* This file provides the core variables for light and dark themes,
   mirroring the main app's themes.css but intended for static sites. */

:root, [data-bs-theme="light"] {
  --bs-primary: #4f46e5;
  --bs-primary-rgb: 79, 70, 229;
  --bs-secondary: #64748b;
  --bs-body-bg: #f8f9fc;
  --bs-secondary-bg: #ffffff;
  --bs-tertiary-bg: #eef2ff;
  --bs-body-color: #334155;
  --bs-secondary-color: #64748b;
  --bs-emphasis-color: #020617;
  --bs-heading-color: #1e293b;
  --bs-border-color: #e2e8f0;
  --bs-link-color: #4338ca;
  --bs-link-hover-color: #3730a3;
}

[data-bs-theme="dark"] {
  --bs-primary: #22d3ee;
  --bs-primary-rgb: 34, 211, 238;
  --bs-secondary: #475569;
  --bs-body-bg: #0f172a;
  --bs-secondary-bg: #1e293b;
  --bs-tertiary-bg: #334155;
  --bs-body-color: #94a3b8;
  --bs-secondary-color: #64748b;
  --bs-emphasis-color: #f8fafc;
  --bs-heading-color: #f1f5f9;
  --bs-border-color: #334155;
  --bs-link-color: #67e8f9;
  --bs-link-hover-color: #a5f3fc;
}