Skip to content

Preflights

Sie können rohes CSS als Preflights aus der Konfiguration injizieren. Das aufgelöste theme ist verfügbar, um das CSS anzupassen.

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

Released under the MIT License.