暗色模式
js 检测当前浏览器是否支持某一个css前沿特性
import {isStyleSupport} from '@vill-v/broswer' isStyleSupport('gap') isStyleSupport(['gap'])
declare const isStyleSupport: (styleName: string | Array<string>) => boolean;