-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
36 lines (34 loc) · 940 Bytes
/
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
import type { Config } from 'tailwindcss'
import typography from '@tailwindcss/typography'
// import plugin from 'tailwindcss/plugin'
// import defaultTheme from 'tailwindcss/defaultTheme'
// import colors from 'tailwindcss/colors'
const config: Config = {
// darkMode: ['class'],
darkMode: ['class', '[data-theme="dark"]'],
content: [
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./content/**/*.{js,ts,jsx,tsx,mdx}", // not so sure about this
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-geist-sans)'],
mono: ['var(--font-geist-mono)'],
},
typography: {
quoteless: {
css: {
'blockquote p:first-of-type::before': { content: 'none' },
'blockquote p:first-of-type::after': { content: 'none' },
},
},
},
},
},
plugins: [
typography,
],
}
export default config