mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
Fix undefined api call Simplify some parts Better theme management Add color picker (dynamic themes wohoo) Add missing lists keys
15 lines
304 B
JavaScript
15 lines
304 B
JavaScript
"use client";
|
|
export function setMode(mode) {
|
|
localStorage.setItem("mode", mode);
|
|
}
|
|
export function getMode() {
|
|
return localStorage.getItem("mode");
|
|
}
|
|
|
|
export function setTheme(theme) {
|
|
localStorage.setItem("theme", theme);
|
|
}
|
|
export function getTheme() {
|
|
return localStorage.getItem("theme");
|
|
}
|
|
|