index.pug 955 B

12345678910111213141516171819202122
  1. // app/shared/ThemeToggle/index.pug
  2. button(
  3. @click="toggleTheme"
  4. class="p-2 rounded-full bg-gray-200 dark:bg-gray-700 text-gray-800 dark:text-white hover:bg-gray-300 dark:hover:bg-gray-600 transition-colors duration-200 focus:outline-none focus:ring-2 focus:ring-primary-500"
  5. aria-label="Переключить тему"
  6. )
  7. svg(
  8. v-if="theme === 'light'"
  9. class="w-5 h-5"
  10. fill="none"
  11. stroke="currentColor"
  12. viewBox="0 0 24 24"
  13. )
  14. path(stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z")
  15. svg(
  16. v-else
  17. class="w-5 h-5"
  18. fill="none"
  19. stroke="currentColor"
  20. viewBox="0 0 24 24"
  21. )
  22. path(stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z")