mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-29 03:09:53 -05:00
a8f5e59b7d
* 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>
15 lines
257 B
TypeScript
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,
|
|
},
|
|
},
|
|
})
|