clash-and-dashboard/windi.config.ts
2021-06-26 00:55:34 +08:00

19 lines
411 B
TypeScript

import { defineConfig } from 'windicss/helpers'
export default defineConfig({
theme: {
extend: {
colors: {
primary: {
500: '#57befc',
600: '#2c8af8'
},
red: '#f56c6c'
},
textShadow: {
primary: '0 0 6px rgb(44 138 248 / 40%)'
}
}
}
})