const THEME_ICON_STYLE: &str = r#"
.theme-toggle svg { display: none; }
html[data-theme-mode="light"] .theme-toggle .theme-icon-light,
html[data-theme-mode="dark"] .theme-toggle .theme-icon-dark,
html[data-theme-mode="system"] .theme-toggle .theme-icon-system,
html:not([data-theme-mode]) .theme-toggle .theme-icon-system { display: block; }
"#;