Skip to content

Preflights

Je kunt ruwe CSS injecteren als preflights vanuit de configuratie. Het opgeloste theme is beschikbaar om de CSS aan te passen.

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

Released under the MIT License.