-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 972 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: '#baf463',
secondary: '#083110',
},
fontFamily: {
montserrat: ['Montserrat', 'sans-serif'],
lato: ['Lato', 'sans-serif'],
},
typography: {
DEFAULT: {
css: {
maxWidth: 'none',
color: '#9ca3af',
h1: {
color: '#ffffff',
},
h2: {
color: '#ffffff',
},
h3: {
color: '#ffffff',
},
strong: {
color: '#ffffff',
},
a: {
color: '#baf463',
'&:hover': {
color: '#a5e052',
},
},
},
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
};