Skip to content

Preflights

คุณสามารถฉีด CSS ดิบเป็น preflights จากการกำหนดค่า theme ที่แก้ไขแล้วสามารถใช้เพื่อปรับแต่ง CSS

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

Released under the MIT License.