/* Dark scheme: override the design tokens (preset colour custom properties).
   Any block/element using these preset colours adapts automatically. Brand
   colours (primary/secondary/accent) intentionally stay the same. */
[data-theme="dark"] {
	--wp--preset--color--background: #0e1116;
	--wp--preset--color--surface: #171a21;
	--wp--preset--color--surface-2: #1f2430;
	--wp--preset--color--foreground: #e6e8eb;
	--wp--preset--color--heading: #f3f5f7;
	--wp--preset--color--muted: #9aa4b2;
	--wp--preset--color--border: #2a2f3a;
}

[data-theme="dark"] body {
	background-color: var( --wp--preset--color--background );
	color: var( --wp--preset--color--foreground );
}

/* Smooth the switch. */
body {
	transition: background-color 0.2s ease, color 0.2s ease;
}
