export const THEME_STORAGE_KEY = 'theme'; export const THEME_DARK = 'dark'; export const THEME_LIGHT = 'light'; export const ARIA_LABEL = 'Toggle theme'; export const ICON_VIEWBOX = '0 0 24 24'; export const STROKE_WIDTH = 2; // Sun icon path export const SUN_ICON_PATH = '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'; // Moon icon path export const MOON_ICON_PATH = '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'; export const MEDIA_QUERY_DARK = '(prefers-color-scheme: dark)';