Files
cypress/packages/frontend-shared/windi.config.ts
T
Barthélémy Ledoux a8f5e59b7d refactor: use design system windicss config (#21503)
* chore: use design system windi config

* fix: windi config should have colors in the right place

* fix: remove direct dependencies to old windi

* upgrade css plugin for types

* update windi plugin

* refactor: update without the safelist

Co-authored-by: Zachary Williams <ZachJW34@gmail.com>
2022-06-22 10:35:55 -05:00

15 lines
257 B
TypeScript

/**
* This file is used for vscode plugin autocompletion of windi colors
*/
import { colors } from '@cypress-design/css'
import { defineConfig } from 'windicss/helpers'
export default defineConfig({
theme: {
extend: {
colors,
},
},
})