-
Notifications
You must be signed in to change notification settings - Fork 28
/
tailwind.config.js
57 lines (56 loc) · 1.46 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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors")
module.exports = {
// important: true,
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"main-dark": "#111928",
"main-orange": "#f59e0b",
},
transitionProperty: {
width: "width",
},
typography: {
DEFAULT: {
css: {
color: "#9ca3af",
"h1, h2, h3, h4, h5, h6": {
margin: 0,
color: "inherit",
},
p: {
fontSize: "1.5rem",
lineHeight: 1.5,
},
strong: {
color: "inherit",
},
blockquote: {
color: "inherit",
lineHeight: 1.4,
borderLeft: "0.5rem solid #b6bac2",
background: "rgba(98, 98, 98, .2)",
},
"blockquote p:first-of-type::before": { content: "none" },
"blockquote p:first-of-type::after": { content: "none" },
"blockquote > p": {
fontSize: "1.4rem",
padding: "1.2rem 1.6rem 1.2rem 0",
},
"ul li": {
fontSize: "1.3rem",
color: "#d1d5db",
marginBottom: "0.2rem",
},
},
},
},
},
},
plugins: [require("daisyui"), require("@tailwindcss/typography")],
}