-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 854 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 854 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
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
lightblack: '#0D0D0D',
lightgrey: '#F3F3F3',
forestgreen: '#0B1C03',
// lightorange: '#F3BA2F',
lightorange: '#F5AA5B',
brightorange: '#F7931A',
// sand: '#F4F2EC',
sand: '#FFFFFF',
mblue: '#006097',
footerbg: '#262626',
grey: '#ebebeb',
},
fontFamily: {
// Lato: ['Lato', 'sans-serif'],
// Lora: ['Lora', 'serif'],
// Montserrat: ['Montserrat', 'sans-serif'],
Montserrat: ['Open Sans', 'sans-serif'],
Lora: ['Montserrat', 'sans-serif'],
LogoFont: ['Space Grotesk', 'sans-serif'],
TitleFont: ['Roboto', 'sans-serif'],
},
},
},
plugins: [],
}