Files
cv-site/templates/partials/color-theme-switcher.html
T

18 lines
903 B
HTML
Raw Normal View History

{{define "color-theme-switcher"}}
<!-- Color Theme Switcher (Light/Dark/Auto) - Cycles on click -->
<!-- IMPORTANT: This controls COLOR theme, NOT layout theme (.theme-clean) -->
<button id="color-theme-switcher"
class="color-theme-switcher no-print has-tooltip"
aria-label="Toggle color theme"
data-tooltip="Toggle color theme">
<iconify-icon id="themeIcon" icon="mdi:theme-light-dark"></iconify-icon>
</button>
<!-- Hidden buttons for compatibility (not displayed, not focusable) -->
<div style="display: none;" aria-hidden="true">
<button class="theme-option-btn" data-theme-mode="light" tabindex="-1" aria-label="Light theme"></button>
<button class="theme-option-btn" data-theme-mode="dark" tabindex="-1" aria-label="Dark theme"></button>
<button class="theme-option-btn active" data-theme-mode="auto" tabindex="-1" aria-label="Auto theme"></button>
</div>
{{end}}