/*
 * Općina Bogdanovci — brand shade variants.
 *
 * The 11 picker-managed base colors are set via the opcina_tema/color_defaults
 * filter in functions.php. These are the derived primary/accent shades that live
 * only in the parent tokens.css; redefining them here lets the child own the full
 * palette. Loaded after the parent stylesheet (dependency: opcina-tema).
 *
 * TODO (owner): if you change `primary`/`accent` in functions.php, regenerate the
 * shades below from the new base colour so the UI stays coherent.
 */
:root {
	/* Primary shade scale derived from the base #163d73 (the colour actually
	   painted across the UI). */
	--mt-color-primary-hover: #265597;
	--mt-color-primary-contrast: #ffffff;
	--mt-color-primary-soft: rgba(22, 61, 115, 0.1);
	--mt-color-primary-deep: #0d264a;
	--mt-color-primary-light: #7397ca;
	--mt-color-primary-100: #e3e9f2;
	--mt-color-primary-tint: #f1f4f8;
	--mt-color-primary-rgb: 22, 61, 115;

	/* Secondary (white) button hover tint — a 10% primary wash. */
	--mt-color-secondary-hover: rgba(22, 61, 115, 0.1);

	--mt-color-accent-bright: #2a6e3b;
	--mt-color-accent-100: #e6f1e1;
	--mt-color-accent-rgb: 30, 90, 48;
}
