clash-and-dashboard/windi.config.ts
Meta e252f85aa8
Feature: add log-level toggle button in log page (#94)
Co-authored-by: MetaCubeX <maze.y2b@github.com>
Co-authored-by: GyDi <segydi@foxmail.com>
Co-authored-by: Dreamacro <8615343+Dreamacro@users.noreply.github.com>
2022-05-06 11:27:24 +08:00

28 lines
684 B
TypeScript

import { defineConfig } from 'windicss/helpers'
export default defineConfig({
theme: {
extend: {
colors: {
primary: {
500: '#57befc',
600: '#2c8af8',
},
red: '#f56c6c',
green: '#67c23a',
},
textColor: {
primary: {
darken: '#54759a',
},
},
textShadow: {
primary: '0 0 6px rgb(44 138 248 / 40%)',
},
boxShadow: {
primary: '2px 5px 20px -3px rgb(44 138 248 / 18%)',
},
},
},
})