-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
140 lines (139 loc) · 4 KB
/
tailwind.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import type { Config } from "tailwindcss";
// import defaultTheme from "tailwindcss/defaultTheme";
export default <Partial<Config>>{
content: [
"./layout/**/*.{html,js,ts,vue}",
"./pages/**/*.{html,js,ts,vue}",
"./components/**/*.{html,js,ts,vue}",
],
theme: {
extend: {
screens: {
xs: "400px",
},
textColor: {
"wv-green": "#4CC35D",
"wv-red": "#FF2828",
"wv-yellow": "#EFE602",
"wv-gray-1": "#737373",
"wv-gray-3": "#DDDDDD",
"wv-gray-5": "#858585",
"wv-gray-7": "#828282",
"wv-gray-30": "#D4D4D4",
"wv-gray-40": "#C0C0C0",
"wv-environment": "#BACB37",
"strategy-1": "#FF2828",
"strategy-2": "#FFB800",
"strategy-3": "#32C1FF",
"strategy-4": "#BACB37",
"strategy-5": "#F67600",
"strategy-6": "#FF9FDF",
"strategy-7": "#D1A637",
"strategy-8": "#BE54F0",
"strategy-9": "#3277FF",
"wv-gray-80": "#6E6E6E",
},
colors: {
"wv-green": "#4CC35D",
"wv-yellow": "#EFE602",
"wv-yellow-70": "#D0C800",
},
backgroundColor: {
"wv-yellow": "#EFE602",
"wv-yellow-70": "#D0C800",
"wv-cream": "#E8E4D8",
"wv-cream-30": "#DDD6C0",
"wv-green": "#4CC35D",
"wv-blue": "#3277FF",
"wv-gray-1": "#737373",
"wv-gray-3": "#DDDDDD",
"wv-gray-4": "#F3F3F3",
"wv-gray-7": "#828282",
"wv-gray-20": "#E8E8E8",
"wv-gray-30": "#D4D4D4",
"wv-safe": "#3277FF",
"wv-environment": "#BACB37",
"wv-connectivity": "#FFC2F1",
"wv-democracy": "#FF7A00",
"wv-management": "#C462F2",
"wv-economic": "#FFB800",
"wv-equality": "#FF2828",
"strategy-1": "#FF2828",
"strategy-2": "#FFB800",
"strategy-3": "#32C1FF",
"strategy-4": "#BACB37",
"strategy-5": "#F67600",
"strategy-6": "#FF9FDF",
"strategy-7": "#D1A637",
"strategy-8": "#BE54F0",
"strategy-9": "#3277FF",
},
borderColor: {
"wv-cream": "#E8E4D8",
"wv-yellow": "#EFE602",
"wv-green": "#4CC35D",
"wv-safe": "#3277FF",
"wv-environment": "#BACB37",
"wv-connectivity": "#FFC2F1",
"wv-democracy": "#FF7A00",
"wv-management": "#C462F2",
"wv-economic": "#FFB800",
"wv-equality": "#FF2828",
"wv-gray-1": "#737373",
"wv-gray-4": "#F3F3F3",
"wv-gray-7": "#828282",
"wv-gray-20": "#E8E8E8",
"wv-gray-30": "#D4D4D4",
"wv-gray-50": "#ABABAB",
"wv-gray-60": "#979797",
"wv-gray-80": "#6E6E6E",
"strategy-1": "#FF2828",
"strategy-2": "#FFB800",
"strategy-3": "#32C1FF",
"strategy-4": "#BACB37",
"strategy-5": "#F67600",
"strategy-6": "#FF9FDF",
"strategy-7": "#D1A637",
"strategy-8": "#BE54F0",
"strategy-9": "#3277FF",
},
},
},
safelist: [
"bg-wv-safe",
"bg-wv-environment",
"bg-wv-connectivity",
"bg-wv-democracy",
"bg-wv-management",
"bg-wv-economic",
"bg-wv-equality",
"border-wv-safe",
"border-wv-environment",
"border-wv-connectivity",
"border-wv-democracy",
"border-wv-management",
"border-wv-economic",
"border-wv-equality",
"border-t-wv-safe",
"border-t-wv-environment",
"border-t-wv-connectivity",
"border-t-wv-democracy",
"border-t-wv-management",
"border-t-wv-economic",
"border-t-wv-equality",
"hover:border-wv-safe",
"hover:border-wv-environment",
"hover:border-wv-connectivity",
"hover:border-wv-democracy",
"hover:border-wv-management",
"hover:border-wv-economic",
"hover:border-wv-equality",
"hover:border-t-wv-safe",
"hover:border-t-wv-environment",
"hover:border-t-wv-connectivity",
"hover:border-t-wv-democracy",
"hover:border-t-wv-management",
"hover:border-t-wv-economic",
"hover:border-t-wv-equality",
],
};