-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
53 lines (52 loc) · 1.13 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
50
51
52
53
require("dotenv").config();
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
purge: process.env.PRODUCTION && ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
height: {
104: "26rem",
112: "28rem",
120: "30rem",
128: "32rem",
},
width: {
104: "26rem",
112: "28rem",
120: "30rem",
128: "32rem",
},
maxWidth: {
"2xs": "18rem",
"3xs": "16rem",
"4xs": "14rem",
},
fontSize: {
"2xs": ["0.65rem", { lineHeight: "1" }],
},
colors: {
gray: colors.blueGray,
pink: {
...colors.fuchsia,
350: "#EC92FB",
},
purple: {
...colors.purple,
350: "#CC9CFD",
},
},
},
fontFamily: {
sans: ["Inter", "ui-sans-serif", "system-ui"],
body: ["Inter", "ui-sans-serif", "system-ui"],
display: ["Inter", "ui-sans-serif", "system-ui"],
code: ["Roboto Mono", "monospace"],
},
},
variants: {
extend: {},
},
plugins: [],
};