forked from WePlanPlans/WPP_FE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 757 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 757 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
31
32
33
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
main1: '#062139',
main2: '#29DDF6',
main3: '#DAF9FF',
main4: '#F2FDFF',
sub1: '#FFEC3E',
sub2: '#FF2167',
gray1: '#f8f8f8',
gray2: '#ededed',
gray3: '#d7d7d7',
gray4: '#888',
gray5: '#5e5e5e',
gray6: '#38393C',
gray7: '#1E1E1E',
red: '#FF0F00',
purple: '#7932FF',
orange: '#FFAC16',
green: '#16E7A9',
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
safelist: [
{
pattern: /(bg|text|border|sub2|orange|purple|green)-/,
},
],
};