import { type Preflight } from '@unocss/core' import { type QuasarTheme } from '../theme.js' const preflights: Preflight[] = [ { getCSS: ({ theme }) => ` :root { --shape-corner-extra-small: ${theme.shape.corner.extraSmall}; --shape-corner-small: ${theme.shape.corner.small}; --shape-corner-medium: ${theme.shape.corner.medium}; --shape-corner-large: ${theme.shape.corner.large}; }` } ] export { preflights }