-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
41 lines (41 loc) · 976 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
module.exports = {
mode: 'jit',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./node_modules/flowbite/**/*.js',
],
theme: {
extend: {
colors: {
Blue: '#006ba6',
Pink1: '#EB4A4E',
Pink2: '#EF666A',
Pink3: '#F08386',
Beige1: '#F4CAC4',
Beige2: '#F3ECD0',
Cyan: '#17A398',
Cyan2: '#1CB9AD',
Cyan3: '#1FCFC1',
Purple: '#662C91',
Purple2: '#7B35AF',
Purple3: '#9047C6',
Black: '#33312E',
Black2: '#44423E',
Black3: '#5C5854',
Yellow: '#FFD028',
Yellow2: '#FFD954',
Yellow3: '#FFE070',
Orange: '#FAA612',
Orange2: '#FAB63D',
Orange3: '#FCC569',
},
},
fontFamily: {
sans: ['Rubik', 'sans-serif'],
heading: ['Rubik', 'sans-serif'],
logo: ['VT323', 'sans-serif'],
},
},
plugins: [require('flowbite/plugin')],
};