-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
37 lines (37 loc) · 865 Bytes
/
tailwind.config.cjs
File metadata and controls
37 lines (37 loc) · 865 Bytes
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
module.exports = {
theme: {
extend: {
typography: {
DEFAULT: {
css: {
code: {
backgroundColor: '#f1f5f9',
padding: '0.125rem 0.25rem',
borderRadius: '0.25rem',
color: '#0f172a',
},
'code::before': { content: '""' },
'code::after': { content: '""' },
pre: {
backgroundColor: '#0f172a',
color: '#e2e8f0',
},
},
},
invert: {
css: {
code: {
backgroundColor: '#1e293b',
color: '#e2e8f0',
},
pre: {
backgroundColor: '#0b1220',
color: '#cbd5e1',
},
},
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};