-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 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
46
47
48
49
module.exports = {
purge: ["./src/**/*.tsx"],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
body: ["IBM Plex Sans"],
},
extend: {
colors: {
blue: {
100: "#cce4f6",
200: "#99c9ed",
300: "#66afe5",
400: "#3394dc",
500: "#0079d3",
600: "#0061a9",
700: "#00497f",
800: "#003054",
900: "#00182a",
},
},
spacing: {
70: "17.5rem",
160: "40rem",
},
container: false,
},
},
variants: {
extend: {
backgroundColor: ['disabled'],
borderColor: ['disabled'],
},
},
plugins: [
function ({ addComponents }) {
addComponents({
".container": {
width: "100%",
marginLeft: "auto",
marginRight: "auto",
"@screen sm": { maxWidth: "640px" },
"@screen md": { maxWidth: "768px" },
"@screen lg": { maxWidth: "975px" },
},
});
},
],
};