/**
 * filter-invert-icon is used to invert icons for dark mode
 * It was included in Codex Design Tokens but not all skins have included it.
 * This is a fallback for those that do not have it.
 */
html.skin-theme-clientpref-night {
	--filter-invert-icon: 1;
}

@media ( prefers-color-scheme: dark ) {
	html.skin-theme-clientpref-os {
		--filter-invert-icon: 1;
	}
}
