-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwindi.config.ts
41 lines (36 loc) · 1.08 KB
/
windi.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { defineConfig } from 'windicss/helpers'
export default defineConfig({
darkMode: 'class',
// safelist: 'p-3 p-4 p-5',
theme: {
extend: {
colors: {
ll: {
base: "#00000014",
neutral: "#FFFFFF",
primary: "#2697FE",
secondary: "#1EE9AC",
accent: "#FFD025",
info: "#1CB5E7",
success: "#2BD3A2",
warning: "#FAB34A",
error: "#FE4443",
border: "#EAEBEF"
},
ld: {
base: "#212332",
neutral: "#2A2E3F",
primary: "#2697FE",
secondary: "#1EE9AC",
accent: "#FFD025",
info: "#1CB5E7",
success: "#2BD3A2",
warning: "#FAB34A",
error: "#FE4443",
border: "#111219"
},
},
},
},
plugins: [],
})