-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
90 lines (89 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
module.exports = {
content: [
"./_layouts/*.{html,md}",
"./_posts/*.{html,md}",
"./_includes/*.{html,md}",
"./_site/*.{html,md}"
],
theme: {
extend: {
colors: {
purple: {
DEFAULT: "#6E3AF5",
light: "#7D4EF6",
},
gray: {
DEFAULT: "#4B5563",
light: "#F5F5F7",
},
black: {
DEFAULT: "#000000",
light: "#8C8C8C",
},
},
fontFamily: {
body: ["-apple-system", "BlinkMacSystemFont", "Inter", "Segoe UI", "Roboto", "sans-serif"],
sans: ["-apple-system", "BlinkMacSystemFont", "Inter", "Segoe UI", "Roboto", "sans-serif"],
},
typography: {
DEFAULT: {
css: {
color: "#FFFFFF",
h1: {
color: "#FFFFFF",
},
h2: {
color: "#FFFFFF",
},
h3: {
color: "#F5F5F7",
},
a: {
color: "#6E3AF5",
"&:hover": {
color: "#7D4EF6",
},
textDecoration: false,
},
strong: {
color: "#FFFFFF",
},
em: {
color: "#FFFFFF",
},
figcaption: {
color: "#F5F5F7",
},
pre: {
backgroundColor: "#FFFFFF",
color: "#000000",
},
code: {
color: "#30B700",
},
},
},
}
},
},
daisyui: {
themes: [
{
["FoxIO Blog"]: {
primary: "#6E3AF5",
secondary: "#7D4EF6",
accent: "#000000",
neutral: "#4B5563",
"base-100": "#FFFFFF",
success: "#22C55E",
warning: "#EAB308",
error: "#EF4444",
},
},
],
},
plugins: [
require("@tailwindcss/typography"),
require("daisyui"),
],
};