-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
module.exports = {
mode: "jit",
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./services/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
rotate: {
"-23": "-23deg",
23: "23deg",
180: "180deg",
},
extend: {
colors: {
primary: {
DEFAULT: "#14213d",
main: "#14213d",
light: "#1b2e55",
},
secondary: {
DEFAULT: "#fca311",
main: "#fca311",
light: "#fcbf49",
},
background: {
DEFAULT: "#e6e6e6",
main: "#e6e6e6",
},
text: {
DEFAULT: "#2d2d2d",
primary: "#2d2d2d",
secondary: "#5f5f5f",
},
backgroundOpacity: {
10: "0.1",
20: "0.2",
95: "0.95",
},
theme: {
black: "000000",
blue: "14213d",
orange: "fca311",
platinum: "e5e5e5",
white: "ffffff",
},
},
},
},
variants: {
boxShadow: ["responsive", "hover", "focus", "group-hover"],
padding: ["responsive", "first", "hover", "focus", "last"],
display: ["responsive", "hover", "focus", "group-hover"],
background: ["responsive", "hover", "focus", "group-hover"],
translate: ["responsive", "active", "hover", "focus", "group-hover"],
transform: ["responsive", "active", "hover", "focus", "group-hover"],
scale: ["responsive", "active", "hover", "focus", "group-hover"],
},
};