-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (50 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
50 lines (50 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./layouts/**/*.html", "./content/**/*.md", "./content/**/*.html"],
theme: {
extend: {
colors: {
'purple': '#704BDB',
'purple-dark': '#663ed8',
'primary': '#5a0fc8',
},
fontFamily: {
'sans': ['Cairo', 'sans-serif'],
'heading': ['Lexend Deca', 'sans-serif'],
},
backgroundColor: {
'primary-nav': '#5a0fc8',
},
typography: {
DEFAULT: {
css: {
h1: {
color: '#333333',
fontWeight: '700',
fontFamily: 'Lexend Deca, sans-serif',
},
h2: {
color: '#333333',
fontWeight: '600',
fontFamily: 'Lexend Deca, sans-serif',
},
h3: {
color: '#333333',
fontWeight: '600',
fontFamily: 'Lexend Deca, sans-serif',
},
a: {
color: '#704BDB',
'&:hover': {
color: '#663ed8',
},
},
},
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}