-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (44 loc) · 1.01 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
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}"
],
theme: {
screens: {
sm: { max: "640px" },
md: { max: "768px" },
lg: { max: "1024px" },
xl: { max: "1280px" },
mxl: {min:"1280px"},
"2xl": { max: "1536px" },
},
extend: {
colors: {
"color-primary": "#191a1b",
"color-secondary": "#4b6cc1",
"color-third": "#ababab",
"color-white": "#ffffff",
"color-error": "red"
},
gridTemplateColumns: {
fit: "repeat(auto-fit,minmax(4rem,140px))"
},
animation: {
"fade-in": "fadeIn ease-in 0.4s finite"
},
keyframes: {
fadeIn: {
from: { opacity: 0, transform: "translateY(-10%)" },
to: { opacity: 1, transform: "translateY(0)" }
}
},
boxShadow: {
"3xl": "rgb(0 0 0) 0px 13px 15px -13px"
}
}
},
plugins: [
require('@tailwindcss/typography')
]
};