Skip to content

Preflights

Yapılandırmadan ham CSS olarak preflight'ları enjekte edebilirsiniz. Çözümlenen theme, CSS'i özelleştirmek için kullanılabilir.

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

Released under the MIT License.