-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1022 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
spacing: {
"max-screen-size": "1920px"
},
gridTemplateColumns: {
autodesktop: "repeat(auto-fit, minmax(410px, 1fr))",
automobile: "repeat(auto-fit, minmax(300px, 1fr))"
},
screens: {
xs: "425px",
// => @media (min-width: 425px) { ... }
"2xl": "1440px",
// => @media (min-width: 1440px) { ... }
"3xl": "1920px",
// => @media (min-width: 1920px) { ... }
"pass-max-screen": "1921px"
// => @media (min-width: 1921px) { ... }
},
fontFamily: {
inter: ["Inter", "sans-serif"]
},
colors: {
primary: "#165C9C",
secondary: "#101828",
gray: "#667085",
dark: "#000000",
altDark: "#222222",
altWhite: "#F0F0F0"
}
}
},
plugins: []
};