UNPKG

antd-style

Version:

css-in-js solution for application combine with antd v5 token system and emotion

9 lines 258 B
export var matchBrowserPrefers = function matchBrowserPrefers(mode) { if (typeof window !== 'undefined') { return matchMedia && matchMedia("(prefers-color-scheme: ".concat(mode, ")")); } // 针对 ssr 做特处 return { matches: false }; };