-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
63 lines (62 loc) · 1.59 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
import typography from "@tailwindcss/typography";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{html,js,jsx,ts,tsx}",
"./pages/**/*.{html,js,jsx,ts,tsx}",
"./components/**/*.{html,js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
dark: "#080808",
"dark-card": "rgba(20, 20, 20, 1)",
"accent-primary": "#D13800",
"accent-secondary": "#00CC8E",
"accent-orange": "#D66035",
},
fontFamily: {
grotesk: ["Space Grotesk", "sans-serif"],
outfit: ["Outfit", "sans-serif"],
ocr: ["OCR A Std", "monospace"],
sfmono: ["SF Mono Round", "monospace"],
},
typography: {
DEFAULT: {
css: {
code: {
color: "black",
backgroundColor: "#d1d5db",
padding: "2px 6px",
borderRadius: "4px",
border: "1px solid #333",
},
"code::before": {
content: "none",
},
"code::after": {
content: "none",
},
a: {
textDecoration: "none",
color: "#FF4500",
},
"blockquote p code": {
color: "black",
},
"a:hover": {
textDecoration: "underline",
},
img: {
borderRadius: "10px",
margin: "auto",
padding: "20px",
filter: "invert(1)",
},
},
},
},
},
},
plugins: [typography],
};