/* theme-name: 浅阑秋 */
/* theme-name-en: Ayu Light */
/* theme-group: classic */
:root {
	color-scheme: light;
	--bg: #fcfcfc;
	--bg-elev: #f8f9fa;
	--bg-elev2: #f0f1f3;
	--border: #e0e1e3;
	--border-soft: #ecedef;
	--text: #5c6166;
	--text-dim: #66727f;
	--text-faint: #6a7582;
	--accent: #f29718;
	--accent-soft: rgba(242, 151, 24, 0.14);
	--green: #86b300;
	--green-soft: rgba(134, 179, 0, 0.12);
	--red: #f07171;
	--red-soft: rgba(240, 113, 113, 0.1);
	--amber: #e59645;
	--blue: #3b82f6;
	--blue-soft: rgba(59, 130, 246, 0.12);
	--term-bg: #fcfcfc;
	--term-fg: #5c6166;
	--term-cursor: #f29718;
	--term-cursor-accent: #fcfcfc;
	--term-selection: rgba(242, 151, 24, 0.24);
	--term-black: #5c6166;
	--term-red: #f07171;
	--term-green: #86b300;
	--term-yellow: #eba400;
	--term-blue: #22a4e6;
	--term-magenta: #a37acc;
	--term-cyan: #4cbf99;
	--term-white: #f8f9fa;
	--term-bright-black: #828e9f;
	--term-bright-red: #f07171;
	--term-bright-green: #86b300;
	--term-bright-yellow: #eba400;
	--term-bright-blue: #22a4e6;
	--term-bright-magenta: #a37acc;
	--term-bright-cyan: #4cbf99;
	--term-bright-white: #ffffff;
	--mono: "SF Mono", "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
	--mermaid-font-size: 12px;
	--tooltip-bg: #f8f9fa;
	--code-bg: #f0f1f3;
	--code-text: #5c6166;
	--code-border: var(--border-soft);
	--code-pad: 8px 10px;
	--card-body-pad: 4px 14px 12px;
	--err-text: #e55a5a;
	--red-text: #e55a5a;
	--amber-text: #c77e24;
	--info-blue: #22a4e6;
	--link: #22a4e6;
	--link-hover: #1a8fc4;
	--link-soft: #22a4e6;
	--md-strong: #5c6166;
	--skill-blue: #22a4e6;
	--plugin-purple: #b58cff;
	--auth-green: #18a97c;
	--scroll-thumb: #d8dade;
	--scroll-thumb-hover: #b9bcc2;
	--notice-err-bg: #401d23;
	--notice-warn-bg: #38251f;
	--notice-info-bg: #1b2544;
	--notice-err-border: #ef4444;
	--notice-warn-border: #f59e0b;
	--notice-info-border: #3b82f6;
	--send-blue: #f29718;
	--send-blue-hover: #e08a0d;
	--stop-red: #ef4444;
	--stop-red-hover: #dc2626;
	--brand-grad-a: #f29718;
	--brand-grad-b: #f07171;
	--on-amber: #1a1a1a;
	--search-active-fg: #1a1d26;
	--switch-knob: #ffffff;
	--bg-elev3: rgba(255, 255, 255, 0.06);
	--sunken-bg: rgba(0, 0, 0, 0.15);
	--glow-015: rgba(255, 255, 255, 0.015);
	--glow-025: rgba(255, 255, 255, 0.025);
	--glow-03: rgba(255, 255, 255, 0.03);
	--glow-04: rgba(255, 255, 255, 0.04);
	--glow-05: rgba(255, 255, 255, 0.05);
	--glow-12: rgba(255, 255, 255, 0.12);
	--glow-18: rgba(255, 255, 255, 0.18);
	--glow-22: rgba(255, 255, 255, 0.22);
	--glow-38: rgba(255, 255, 255, 0.38);
	--control-fg: #6b7d8f;
	--control-bg: #f0f1f3;
	--control-border: #e0e1e3;
	--bg-image: none;
	--bg-image-dim: 0.78;
	--bg-image-blur: 0px;
	--wallpaper-panel-alpha: 100%;
	--topbar-bg: #f8f9fa;
	--statusbar-bg: #fcfcfc;
	--panel-bg: #f8f9fa;
	--card-bg: #f8f9fa;
	--chip-bg: #f0f1f3;
	--msgs-bg: #fcfcfc;
	--inputbox-bg: #f0f1f3;
	--menu-bg: var(--bg-elev2);
}

/* ---- syntax highlighting (Ayu Light) ---- */
.hljs {
	color: #5c6166;
	background: #f0f1f3;
}
.hljs-keyword,
.hljs-meta .hljs-keyword {
	color: #fa8532;
	font-weight: 600;
}
.hljs-title,
.hljs-title.function_ {
	color: #eba400;
}
.hljs-number,
.hljs-literal {
	color: #a37acc;
}
.hljs-string {
	color: #86b300;
}
.hljs-built_in,
.hljs-type {
	color: #55b4d4;
}
.hljs-comment {
	color: #6a7582;
	font-style: italic;
}
