-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (42 loc) · 912 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
41
42
43
44
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.html", "./src/**/*.js"],
darkMode: "class",
theme: {
container: {
center: true,
padding: "1rem",
},
screens: {
sm: "575px",
// => @media (min-width: 576px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "992px",
// => @media (min-width: 992px) { ... }
xl: "1200px",
// => @media (min-width: 1200px) { ... }
"2xl": "1400px",
// => @media (min-width: 1400px) { ... }
},
extend: {
colors: {
black: "#000",
white: "#fff",
primary: "",
secondary: "",
stroke: "",
light: "",
dark: "",
heading: "",
body: "",
},
screens: {
xs: "450px",
"3xl": "1500px",
},
},
},
plugins: [],
prefix: "ud-",
};