-
Notifications
You must be signed in to change notification settings - Fork 33
/
tailwind.config.js
47 lines (46 loc) Β· 1.19 KB
/
tailwind.config.js
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
module.exports = {
purge: ["./src/**/*.html", "./src/**/*.vue", "./src/**/*.jsx"],
theme: {
extend: {
colors: {
custom: {
brand: "var(--brand)",
"bg-primary": "var(--bg-primary)",
"bg-primary-2": "var(--bg-primary-2)",
"bg-card": "var(--bg-card)",
"bg-card-2": "var(--bg-card-2)",
"bg-card-3": "var(--bg-card-3)",
"bg-3": "var(--bg-3)",
"bg-header": "var(--bg-header)",
"text-primary": "var(--text-primary)",
"text-secondary": "var(--text-secondary)",
"text-3": "var(--text-3)",
"green-1": "var(--green-1)",
"yellow-1": "var(--yellow-1)",
"gray-1": "var(--gray-1)",
},
},
spacing: {
"34": "8.5rem",
"72": "18rem",
"84": "21rem",
"96": "24rem",
},
opacity: {
"85": ".85",
},
fontSize: {
xxs: "0.65rem",
},
boxShadow: {
xxl: "0 25px 55px rgba(0,0,0,.2),0 16px 28px rgba(0,0,0,.24)",
},
fontFamily: {
rubik: ["Rubik", "Roboto", "sans-serif"],
tomorow: "Tomorrow",
},
},
},
variants: {},
plugins: [],
};