-
Notifications
You must be signed in to change notification settings - Fork 803
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
54 lines (54 loc) · 1.27 KB
/
tailwind.config.cjs
File metadata and controls
54 lines (54 loc) · 1.27 KB
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
54
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,jsx,ts,tsx}",
"./app/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
typography: () => ({
DEFAULT: {
css: {
maxWidth: "80ch",
img: {
borderRadius: "1rem",
},
a: {
color: "rgb(17, 85, 204)", // "dark cornflower blue 2" in Google Docs
},
h1: {
fontSize: "3rem",
},
h2: {
fontSize: "2.25rem",
},
h3: {
fontSize: "1.875rem",
},
h4: {
fontSize: "1.5rem",
},
h5: {
fontSize: "1.25rem",
},
h6: {
fontSize: "1rem",
},
},
},
}),
screens: {
lg: "900px",
"3xl": "1920px",
},
colors: {
"pantheon-yellow": "rgb(255, 220, 40)",
"pantheon-black": "rgb(35, 35, 45)",
"pantheon-purple-hover": "#4f32ce",
"pantheon-violet": "rgb(79, 50, 206)",
},
},
},
plugins: [require("@tailwindcss/typography"), require("tailwindcss-animate")],
};