Ad Space - Top Banner (728x90)

Dark Mode Toggle

0 viewsmedium
Background:
Dark Mode Toggle
1
2
3
4
5
6
7
8
9
10
11
<div class="theme4">
  <input type="checkbox" class="input4" />
  <svg class="icon4 icon-moon4" fill="none" viewBox="0 0 24 24">
    <path d="M21 12.79A9 9 0 1111.21 3a7 7 0 009.79 9.79z" fill="currentColor"/>
  </svg>
  <svg class="icon4 icon-sun4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
    <circle cx="12" cy="12" r="5"/>
    <path d="m12 1 0 2m0 18 0 2M4.22 4.22l1.42 1.42m12.72 12.72 1.42 1.42M1 12l2 0m18 0 2 0M4.22 19.78l1.42-1.42m12.72-12.72 1.42-1.42"/>
  </svg>
  <span class="theme-label4">Dark Mode</span>
</div>
Was this helpful?