Files
phishingclub/frontend/src/lib/components/ThemeToggle.svelte
T
Ronni Skansing d2cf545734 improve login and install UI
Signed-off-by: Ronni Skansing <rskansing@gmail.com>
2025-09-20 11:17:01 +02:00

53 lines
2.1 KiB
Svelte

<script>
import { theme, toggleMode, modeLight, modeDark } from '$lib/theme.js';
// reactive statement to determine current theme
$: isDark = $theme === modeDark;
const handleToggle = () => {
toggleMode();
};
</script>
<button
on:click={handleToggle}
class="relative inline-flex items-center justify-center w-10 h-10 rounded-full bg-white/10 dark:bg-gray-800/80 backdrop-blur-sm border border-gray-200/50 dark:border-gray-600/50 hover:bg-white/20 dark:hover:bg-gray-700/80 transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-blue-500/50 shadow-lg"
title={isDark ? 'Switch to light mode' : 'Switch to dark mode'}
aria-label={isDark ? 'Switch to light mode' : 'Switch to dark mode'}
>
<!-- sun icon for light mode -->
<svg
class="w-5 h-5 text-yellow-500 dark:text-yellow-400 transition-all duration-300 {isDark
? 'opacity-0 rotate-90 scale-0'
: 'opacity-100 rotate-0 scale-100'} absolute"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z"
clip-rule="evenodd"
/>
</svg>
<!-- moon icon for dark mode -->
<svg
class="w-5 h-5 text-blue-400 dark:text-blue-300 transition-all duration-300 {isDark
? 'opacity-100 rotate-0 scale-100'
: 'opacity-0 -rotate-90 scale-0'} absolute"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z" />
</svg>
<!-- invisible placeholder to maintain button size -->
<div class="w-5 h-5 opacity-0">
<svg class="w-5 h-5" viewBox="0 0 20 20">
<path d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1z" />
</svg>
</div>
</button>