-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
tailwind.config.ts
36 lines (35 loc) · 879 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'
export default <Partial<Config>>{
theme: {
extend: {
fontFamily: {
main: ['Inter', 'sans-serif'],
},
typography: {
DEFAULT: {
css: {
'code': {
backgroundColor: 'rgb(var(--color-gray-800))',
padding: '0.25rem 0.375rem',
borderRadius: '0.375rem',
border: '1px solid rgb(var(--color-gray-700))',
},
'code::before': {
content: '',
},
'code::after': {
content: '',
},
'blockquote p:first-of-type::before': {
content: '',
},
'blockquote p:last-of-type::after': {
content: '',
},
},
},
},
},
},
content: ['formkit.config.ts'],
}