-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 954 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (44 loc) · 954 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
38
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
typography: {
DEFAULT: {
css: {
maxWidth: 'none',
color: '#94a3b8',
a: {
color: '#fbbf24',
'&:hover': {
color: '#f59e0b',
},
},
h1: {
color: '#ffffff',
},
h2: {
color: '#ffffff',
},
h3: {
color: '#ffffff',
},
strong: {
color: '#ffffff',
},
code: {
color: '#ffffff',
},
blockquote: {
color: '#94a3b8',
borderLeftColor: '#fbbf24',
},
},
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
};