-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
43 lines (38 loc) · 924 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config}*/
module.exports = {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1535px",
xl: "1279px",
lg: "1023px",
sm: "639px",
md: "767px",
},
maxWidth: "100%",
},
screens: {
"2xl": { max: "1535px" },
// => @media (max-width: 1535px) { ... }
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
md: { max: "836px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
exsm: { max: "380px" },
},
extend: {
colors: {
"text-yellow-500": "#ffc312",
},
},
},
plugins: [],
};