-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (61 loc) · 1.42 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}', './pages_/**/*.{js,ts,jsx,tsx}'],
theme: {
container: {
center: true,
},
maxWidth: {
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
"3/5": "60%",
},
borderColor: {
black: "#2B2D42",
primary: "#41E2BA",
},
extend: {
fontFamily: {
display: ["Open Sans", "sans-serif"],
body: ["Open Sans", "sans-serif"],
},
colors: {
white: "#FFFCF9",
black: "#2B2D42",
primary: "#41E2BA",
onyx: "#313638",
alabaster: "#E0DFD5",
},
textColor: {
black: "#2B2D42",
primary: "#41E2BA",
white: "#FFFCF9",
alabaster: "#E0DFD5",
onyx: "#313638",
// secondary: "#ffed4a",
// danger: "#e3342f",
},
zIndex: {
'-10': '-10',
},
backgroundColor: {
alabaster: "#E0DFD5",
onyx: "#313638",
oceanblue: "#5398BE",
},
padding: {
28: "7rem",
36: "9rem"
}
},
},
variants: {
text: ['responsive', 'hover'],
cursor: ['responsive', 'hover', 'focus'],
borderWidth: ['responsive', 'hover', 'focus'],
margin: ['responsive', 'hover', 'focus'],
padding: ['responsive', 'hover', 'focus'],
},
plugins: [],
};