blob: 769ea3cb6e428cb9edb8adb513e211283b46e7c8 (
plain) (
tree)
|
|
/// <reference path="setTheme.ts" />
function getTheme(): Theme {
let theme = Theme.Dark;
try {
theme = JSON.parse(localStorage.getItem("theme")!);
} catch (e: any) {
console.log("invalid theme, using dark");
}
return theme;
}
|