-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (50 loc) · 1.08 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: ["./src/**/*.html", "./src/**/*.js"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
margin:{
'68': '17rem',
}
},
screens: {
iphone5: { max: "320px" },
...defaultTheme.screens,
"max-md": { max: "767px" },
"max-sm": { max: "640px" },
"max-xs": { max: "500px" },
},
zIndex: {
'-1': '-1',
},
backgroundColor: (theme) => ({
...theme("colors"),
nav: "#FDA445",
"nav-hover": "#FFC587",
orange: "#F9AE5E",
"light-orange": "#F8E2CF",
pink: "#EF8D98",
}),
textColor: (theme) => theme("colors"),
textColor: {
orange: "#FFA53b",
gray: "#8E8E8E",
},
fontFamily: {
mont: ["Montserrat, san-serif"],
screens: {
iphone6: "360px",
xs: "300px",
...defaultTheme.screens,
},
},
variants: {
extend: {
scale: ["group-hover"],
translate: ["group-hover"],
},
},
plugins: [],
},
};