2025-11-05 16:48:41 +00:00
|
|
|
/* Light Theme - Default */
|
2025-11-17 16:29:00 +00:00
|
|
|
/* @theme-type: light */
|
2025-11-05 16:48:41 +00:00
|
|
|
:root[data-theme="light"] {
|
|
|
|
|
/* Background colors */
|
|
|
|
|
--bg-primary: #ffffff;
|
|
|
|
|
--bg-secondary: #f9fafb;
|
|
|
|
|
--bg-tertiary: #f3f4f6;
|
|
|
|
|
--bg-hover: #f3f4f6;
|
|
|
|
|
--bg-active: #e5e7eb;
|
|
|
|
|
|
|
|
|
|
/* Text colors */
|
|
|
|
|
--text-primary: #111827;
|
|
|
|
|
--text-secondary: #6b7280;
|
|
|
|
|
--text-tertiary: #9ca3af;
|
|
|
|
|
|
|
|
|
|
/* Border colors */
|
|
|
|
|
--border-primary: #e5e7eb;
|
|
|
|
|
--border-secondary: #d1d5db;
|
|
|
|
|
|
|
|
|
|
/* Accent colors */
|
|
|
|
|
--accent-primary: #3b82f6;
|
|
|
|
|
--accent-hover: #2563eb;
|
|
|
|
|
--accent-light: #dbeafe;
|
|
|
|
|
|
|
|
|
|
/* Status colors */
|
|
|
|
|
--success: #10b981;
|
|
|
|
|
--error: #ef4444;
|
|
|
|
|
--warning: #f59e0b;
|
2026-05-06 13:34:16 +00:00
|
|
|
|
2026-05-06 16:51:01 +00:00
|
|
|
/* Bold/italic overrides: deeper variants for readability on light background. */
|
|
|
|
|
--syntax-bold: #b45309; /* deep amber */
|
|
|
|
|
--syntax-italic: #0891b2; /* deep cyan */
|
2026-05-06 13:34:16 +00:00
|
|
|
|
2025-11-05 16:48:41 +00:00
|
|
|
/* Shadows */
|
|
|
|
|
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
|
|
|
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
|
|
|
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|