import { defineConfig } from 'windicss/helpers'; import ThemeColor from './theme'; export default defineConfig({ theme: { extend: { colors: { // base ...ThemeColor.base, // flow ...ThemeColor.flow, }, fontSize: { 22: '22px', }, }, }, });