forked from srm-kzilla/links
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
83 lines (83 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
module.exports = {
purge: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./layout/**/*.{js,ts,jsx,tsx}',
'./helpers/**/*.{js,ts,jsx,tsx}',
],
options: {
safelist: {
standard: [
/^[\w:]*col-start-/,
/^[\w:]*col-span-/
]
}
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
Inter: ["Inter", "sans-serif"],
Mulish: ["Mulish", "sans-serif"],
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'translate(-10px)' },
'50%': { transform: 'translate(10px)' },
}
},
animation: {
wiggle: 'wiggle 0.1s ease-in-out 3',
},
width: {
custom: "21.66666%",
},
height: {
linkPage: "72%",
linkContainer: "28rem",
},
padding: {
custom: "26px",
},
colors: {
backdrop: " rgba(0,0,0,0.3)",
backgroundwhite: "#F5F5F5",
backgroundwhiteinset: "#bababa",
offwhite: "#F4FBF7",
lightblue: "#56CCF2",
darkgray: "#333333",
lightgraycustom: "#A7A6A6",
buttongray: "#4F4F4F",
statusRed: "#EC5A58",
primaryGreen: {
100: "#F1FAF5",
200: "#6FCF97",
300: "#40BEAF",
},
lightgray: {
DEFAULT: "#5F5F5F",
10: "#F2F2F2",
25: "rgba(95, 95, 95, 0.25)",
50: "rgba(95, 95, 95, 0.50)",
},
},
boxShadow: {
custom: "1px 1px 6px rgba(0, 0, 0, 0.25)",
},
fontSize: {
xxl: "8.9rem",
},
inset: {
addButton: "72%",
37: "9.5rem",
},
minHeight: {
custom: "90vh",
},
},
},
variants: {
width: ["responsive", "hover", "focus", "group-hover"],
},
plugins: [],
};