-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (60 loc) · 1.2 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
61
module.exports = {
purge: ["./src/**/*.js"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
sans: ["Poppins", "Arial"],
},
width: {
"1/7": "14.2857143%",
},
colors: {
gray: {
50: "#F5F5F5",
100: "#F5F6F8",
300: "#ECECEC",
600: "#C4C4C4",
700: "#D9DBE9",
dark: "#333333",
},
purple: {
700: "#2A00A2",
500: "#5F2EEA",
},
pastel: {
mint: "#ABFFE8",
red: "#F19DA2",
yellow: "#FCDCA1",
blue: "#ACF0FF",
turquoise: "#ACE8DC",
},
},
borderRadius: {
DEFAULT: "12px",
lg: "25px",
button: "40px",
},
minWidth: {
72: "18rem",
80: "20rem",
},
minHeight: {
"text-sm": "1.75rem",
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-1deg)" },
"50%": { transform: "rotate(1deg)" },
},
},
animation: {
wiggle: "wiggle 1s ease-in-out infinite",
},
},
},
variants: {
extend: {},
},
plugins: [],
};