/*
 * Code syntax highlighting.
 *
 * Zola 0.21+ generates per-theme CSS via its "giallo" highlighter into
 * giallo-light.css / giallo-dark.css (these hold the Solarized light/dark colors
 * set in [markdown.highlighting] in config.toml). Duckquill v6.3.0 predates this
 * change and no longer links them itself, so we load them here:
 * light by default, dark when the OS prefers dark — matching Duckquill's behavior.
 */
@import url("giallo-light.css");
@import url("giallo-dark.css") (prefers-color-scheme: dark);
