@alicloud/console-components
Version:
Alibaba Cloud React Components
11 lines (10 loc) • 425 B
JavaScript
import { CSS_VAR_THEME } from '../const';
/**
* 当无法使用 useCssTheme 的时候,用这个(我不知道为什么不能只用静态方法,而有的地方要用 hook)
*/
export default function getCssTheme() {
if (!window.getComputedStyle) { // 可能是为了避免 SSR 的错误?
return '';
}
return window.getComputedStyle(window.document.body).getPropertyValue(CSS_VAR_THEME).trim();
}