-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtailwind.config.js
70 lines (66 loc) · 1.97 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
const { colors } = require("tailwindcss/defaultTheme");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
jakarta: ["Plus Jakarta Display", ...defaultTheme.fontFamily.sans],
roboto: ["Roboto", , ...defaultTheme.fontFamily.sans],
},
colors: {
"primary-color": "#fec734",
"background-grayec": "#ececec",
"background-grayfa": "#fafafa",
rede7: "#e72b2b",
},
keyframes: {
navigation: {
"0%": { width: "0%", height: "3px" },
"50%": { width: "100%", height: "3px" },
"100%": {
width: "100%",
height: "100%",
backgroundColor: "theme('colors.primary-color')",
},
},
jelly: {
"0%": { transform: "scale(1, 1)" },
"100%": { transform: "scale(1, 1)" },
"25%": { transform: "scale(0.9, 1.1)" },
"50%": { transform: "scale(1.1, 0.9)" },
"75%": { transform: "scale(0.95, 1.05)" },
},
},
animation: {
"nav-move": "navigation 800ms forwards",
"btn-search": "jelly 500ms",
},
gridTemplateColumns: {
"product-detail": "3fr 19fr 23fr",
"product-category": "10fr 37fr",
cart: "163fr 72fr",
"cart-item": "29fr 11fr 9fr 9fr",
},
},
screens: {
"2xl": { max: "1545px" },
// => @media (max-width: 1535px) { ... }
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
md: { max: "767px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
xs: { max: "459px" },
// => @media (max-width: 459px) { ... }
},
},
plugins: [],
};