-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.45 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
54
55
56
57
58
59
60
module.exports = {
purge: ["./**/*.html"],
theme: {
extend: {
fontFamily: {
sans: ["Open Sans", "sans-serif"],
serif: ["Noto Serif", "serif"],
},
colors: {
"pioco-orange": "#f83e3e",
"pioco-blue": "#0b3954",
"pioco-dark": "#333333",
"pioco-light": "#dddddd",
},
container: {
center: true,
},
typography: {
DEFAULT: {
css: {
color: "#333333",
fontFamily: "'Noto Serif', serif",
a: {
color: "#0b3954",
"&:hover": {
color: "#f83e3e",
},
},
h1: {
fontWeight: 800,
fontFamily: "'Open Sans', sans-serif",
},
h2: {
fontWeight: 800,
fontFamily: "'Open Sans', sans-serif",
},
h3: {
fontWeight: 700,
fontFamily: "'Open Sans', sans-serif",
},
h4: {
fontWeight: 700,
fontFamily: "'Open Sans', sans-serif",
},
h5: {
fontWeight: 700,
fontFamily: "'Open Sans', sans-serif",
},
h6: {
fontWeight: 400,
fontFamily: "'Open Sans', sans-serif",
},
},
},
},
},
},
variants: {},
plugins: [require("@tailwindcss/typography")],
};