-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathscheme-switcher.njk
20 lines (20 loc) · 1.1 KB
/
scheme-switcher.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<section class="scheme-switcher" aria-label="Цветовая тема">
<button class="scheme-switcher__button" type="button" value="dark" aria-pressed="false" title="Тёмная">
<svg class="scheme-switcher__icon" aria-hidden="true" width="20" height="20">
<use href="/images/sprite.svg#moon"></use>
</svg>
<span class="visually-hidden">Тёмная</span>
</button>
<button class="scheme-switcher__button" type="button" value="auto" aria-pressed="false" title="Системная">
<svg class="scheme-switcher__icon" aria-hidden="true" width="20" height="20">
<use href="/images/sprite.svg#duo"></use>
</svg>
<span class="visually-hidden">Системная</span>
</button>
<button class="scheme-switcher__button" type="button" value="light" aria-pressed="false" title="Светлая">
<svg class="scheme-switcher__icon" aria-hidden="true" width="20" height="20">
<use href="/images/sprite.svg#sun"></use>
</svg>
<span class="visually-hidden">Светлая</span>
</button>
</section>