Skip to content

预检

你可以从配置中注入原始 CSS 作为预检。已解析的 theme 可用于自定义 CSS。

ts
preflights: [
  {
    getCSS: ({ theme }) => `
      * {
        color: ${theme.colors.gray?.[700] ?? '#333'};
        padding: 0;
        margin: 0;
      }
    `,
  },
]

基于 MIT 许可发布