-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
42 lines (39 loc) · 1.03 KB
/
tailwind.config.ts
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
import daisyui from "daisyui";
import typography from "@tailwindcss/typography";
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,jsx,mdx,ts,tsx}",
"./components/**/*.{js,jsx,mdx,ts,tsx}",
"./posts/**/*.{js,jsx,mdx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['"BIZ UDPGothic"', "sans-serif"],
mono: ['"Sometype Mono"', "monospace"],
impact: ['"Share Tech Mono"', '"Biz UDPGothic"', "monospace"],
},
typography: {
DEFAULT: {
css: {
"code::before": {
content: "none",
},
"code::after": {
content: "none",
},
blockquote: { fontStyle: "normal" },
"blockquote p:first-of-type::before": { content: "none" },
"blockquote p:first-of-type::after": { content: "none" },
},
},
},
},
},
daisyui: {
themes: ["light"],
},
plugins: [typography, daisyui],
};
export default config;