Files
aliasvault/browser-extensions/chrome/src/contentScript/Shared.ts
2025-02-06 19:27:18 +01:00

6 lines
156 B
TypeScript

/**
* Check if the current theme is dark.
*/
export function isDarkMode(): boolean {
return window.matchMedia('(prefers-color-scheme: dark)').matches;
}