mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-20 15:41:40 -04:00
6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
/**
|
|
* Check if the current theme is dark.
|
|
*/
|
|
export function isDarkMode(): boolean {
|
|
return window.matchMedia('(prefers-color-scheme: dark)').matches;
|
|
} |