-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (51 loc) · 2.03 KB
/
tailwind.config.js
File metadata and controls
52 lines (51 loc) · 2.03 KB
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
const config = {
theme: {
extend: {
typography: {
gruvbox: {
css: {
maxWidth: 'min(75ch, 100%)',
code: {
fontWeight: '500'
},
'--tw-prose-body': 'hsl(var(--gruvlfg))',
'--tw-prose-headings': 'hsl(var(--gruvlfg))',
'--tw-prose-lead': 'hsl(var(--gruvlfg))',
'--tw-prose-links': 'hsl(var(--gruvlfg))',
'--tw-prose-bold': 'hsl(var(--gruvlfg))',
'--tw-prose-counters': 'hsl(var(--gruvlfg))',
'--tw-prose-bullets': 'hsl(var(--gruvlfg))',
'--tw-prose-hr': 'hsl(var(--gruvlfg))',
'--tw-prose-quotes': 'hsl(var(--gruvlfg))',
'--tw-prose-quote-borders': 'hsl(var(--gruvlfg))',
'--tw-prose-captions': 'hsl(var(--gruvlfg))',
'--tw-prose-code': 'hsl(var(--gruvlfg))',
'--tw-prose-pre-code': 'hsl(var(--gruvlfg))',
'--tw-prose-pre-bg': 'hsl(var(--gruvlfg))',
'--tw-prose-th-borders': 'hsl(var(--gruvlfg))',
'--tw-prose-td-borders': 'hsl(var(--gruvlfg))',
'--tw-prose-invert-body': 'hsl(var(--gruvdfg))',
'--tw-prose-invert-headings': 'hsl(var(--gruvdfg0))',
'--tw-prose-invert-lead': 'hsl(var(--gruvdfg2))',
'--tw-prose-invert-links': 'hsl(var(--gruvdfg0))',
'--tw-prose-invert-bold': 'hsl(var(--gruvdfg0))',
'--tw-prose-invert-counters': 'hsl(var(--gruvdfg2))',
'--tw-prose-invert-bullets': 'hsl(var(--gruvdfg3))',
'--tw-prose-invert-hr': 'hsl(var(--gruvdfg4))',
'--tw-prose-invert-quotes': 'hsl(var(--gruvdfg0))',
'--tw-prose-invert-quote-borders': 'hsl(var(--gruvdfg4))',
'--tw-prose-invert-captions': 'hsl(var(--gruvdfg2))',
'--tw-prose-invert-kbd': 'hsl(var(--gruvdfg0))',
'--tw-prose-invert-kbd-shadows': 'hsl(var(--gruvdfg0))',
'--tw-prose-invert-code': 'hsl(var(--gruvdfg0))',
'--tw-prose-invert-pre-code': 'hsl(var(--gruvdfg))',
'--tw-prose-invert-pre-bg': 'hsl(var(--gruvdfg))',
'--tw-prose-invert-th-borders': 'hsl(var(--gruvdfg3))',
'--tw-prose-invert-td-borders': 'hsl(var(--gruvdfg4))'
}
}
}
}
}
};
export default config;