mirror of
https://github.com/woodchen-ink/clash-and-dashboard.git
synced 2025-07-18 14:01:56 +08:00
23 lines
559 B
TypeScript
23 lines
559 B
TypeScript
import { defineConfig } from 'windicss/helpers'
|
|
|
|
export default defineConfig({
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
500: '#57befc',
|
|
600: '#2c8af8',
|
|
},
|
|
red: '#f56c6c',
|
|
green: '#67c23a',
|
|
},
|
|
textShadow: {
|
|
primary: '0 0 6px rgb(44 138 248 / 40%)',
|
|
},
|
|
boxShadow: {
|
|
primary: '2px 5px 20px -3px rgb(44 138 248 / 18%)',
|
|
},
|
|
},
|
|
},
|
|
})
|