/* Theme tokens override base variables via body class */

.theme-light {
	--bg: #ffffff;
	--text: #0b1220;
	--muted: #6b7280;
	--surface: #f9fafb;
	--surface-2: #eef2f7;
	--border: #e5e7eb;
}

.theme-dark {
	/* Requested palette */
	--bg: #40382c;        /* dark brown */
	--text: #facc15;      /* yellow text */
	--muted: #facc15;     /* keep muted yellow as requested */
	--surface: #40382c;   /* align surfaces to background for cohesive theme */
	--surface-2: #40382c;
	--border: #8d7b62;
	/* Also override accents to match theme */
	--accent: #8d7b62;
	--accent-pressed: #8d7b62;
}
