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;
}
`,
},
]