NoteDiscovery/themes/light.css

46 lines
1.2 KiB
CSS
Raw Normal View History

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
/* Markdown syntax-highlight colors (color-only, no font-weight / italic) */
--syntax-heading: #2563eb; /* deep blue */
--syntax-bold: #b45309; /* deep amber — readable on white */
--syntax-italic: #7c3aed; /* deep violet */
--syntax-code: #be123c; /* crimson */
--syntax-link: #2563eb;
--syntax-list: #c2410c; /* burnt orange */
--syntax-wikilink:#4f46e5; /* indigo */
--syntax-blockquote: #6b7280; /* slate */
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);
}