-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 784 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (29 loc) · 784 Bytes
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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./**/*.html"],
theme: {
container: {
center: true,
},
extend: {
colors: {
"better-purple": "#6F00D0",
"better-yellow": "#FFEA9E",
"better-blue": "#009DF6",
"better-teal": "#5CEFDB",
"better-red": "#BE123C",
"strong-yellow": "#F9FC00",
"better-green": "#166534",
},
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
fontSize: {
base: ["1rem", "1.5"],
"5xl": ["3rem", "1.2"],
}, // need to define 2nd param for line-height explicitly, otherwise we end up with 1
},
},
variants: {},
plugins: [require("@tailwindcss/typography")],
};