mirror of
https://github.com/XTLS/Xray-docs-next.git
synced 2025-01-21 02:01:41 +03:00
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
|
// FIXME: Should correct handle dark selector
|
||
|
export const getDarkmodeStatus = (): boolean => {
|
||
|
const html = document.documentElement;
|
||
|
|
||
|
return (
|
||
|
html.classList.contains("dark") ||
|
||
|
html.getAttribute("data-theme") === "dark"
|
||
|
);
|
||
|
};
|