36 lines
793 B
CSS
36 lines
793 B
CSS
/* Light Theme - Default */
|
|
/* @theme-type: light */
|
|
: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;
|
|
|
|
/* 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);
|
|
}
|
|
|