6614 shaares
42 private links
42 private links
export function isDarkMode(): boolean {
const systemDark: any = window.matchMedia("(prefers-color-scheme: dark)");
return systemDark.matches;
}
export function isDarkMode(): boolean {
const systemDark: any = window.matchMedia("(prefers-color-scheme: dark)");
return systemDark.matches;
}