-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (36 loc) · 960 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
Montserrat: ['Montserrat', 'sans-serif'],
Quicksand: ['Quicksand', 'sans-serif'],
},
colors: {
pink: {
DEFAULT: '#EF7C8E',
},
cream: {
DEFAULT: '#FFFEF2',
},
green: {
DEFAULT: '#3D5B59',
},
mint: {
DEFAULT: '#B5E5CF',
},
bluegreen: {
DEFAULT: '#75E6DA',
},
babyblue: {
DEFAULT: '#D4F1F4',
},
},
},
variants: {
extend: {},
},
plugins: [],
},
};