NoteDiscovery/themes/nord.css

42 lines
1.2 KiB
CSS
Raw Permalink Normal View History

2025-11-05 16:48:41 +00:00
/* Nord Theme - Arctic, north-bluish color palette */
/* https://www.nordtheme.com/ */
2025-11-17 16:29:00 +00:00
/* @theme-type: dark */
2025-11-05 16:48:41 +00:00
:root[data-theme="nord"] {
/* Background colors */
--bg-primary: #2e3440;
--bg-secondary: #3b4252;
--bg-tertiary: #434c5e;
--bg-hover: #434c5e;
--bg-active: #4c566a;
/* Text colors */
--text-primary: #eceff4;
--text-secondary: #d8dee9;
--text-tertiary: #81a1c1;
/* Border colors */
--border-primary: #4c566a;
--border-secondary: #434c5e;
/* Accent colors */
--accent-primary: #88c0d0;
--accent-hover: #5e81ac;
--accent-light: rgba(136, 192, 208, 0.15);
/* Status colors */
--success: #a3be8c;
--error: #bf616a;
--warning: #ebcb8b;
2026-05-06 16:51:01 +00:00
2026-05-07 09:15:36 +00:00
/* Bold + italic — aurora yellow + lighter frost (cohesive with frost-cyan heading) */
--syntax-bold: #ebcb8b; /* nord13 — aurora yellow */
--syntax-italic: #bae6fd; /* lighter frost — same family as heading, distinct by luminance */
2025-11-05 16:48:41 +00:00
/* Shadows */
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}