-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
63 lines (62 loc) · 1.54 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// tailwind.config.js
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
screens: {
xs: '320px',
sm: '640px',
md: '768px',
lg: '1024px',
},
extend: {
colors: {
footerGray: '#FAFAFB',
yellowBg: '#F3C63F',
white: '#FFFFFF',
violeteBg: '#F5F1FE',
blueBg: '#15ABFF',
primary: '#6D31ED',
grayDark: '#CCD0D8',
grayLight: '#F3F4F6',
redBg: '#DC2627',
textBlack: '#171A1F',
lightGrey: '#DEE1E6',
grey: '#565D6D',
black: '#171A1F',
bannerBg: '#F4F1EB',
thickorenge: '#EA580C',
thinorenge: '#FFEDD5',
dashgrey: '#F5F6F6',
dashgreytext: '#737791',
salesbg: '#FFE2E5',
iconsales: '#FA5A7D',
orderbg: '#FFF4DE',
iconorder: '#FF947A',
psoldbg: '#DCFCE7',
psoldicon: '#3CD856',
customerbg: '#F3E8FF',
customericon: '#BF83FF',
dashbordblue: '#4079ED',
linkGrey: '#9095A1',
sliderBg: '#F0F9FF',
wishlistBg: '#F5F1F1',
textareaBorder: '#A8ADB7',
statusBlue: '#15ABFF',
statusRed: '#E82E2E',
},
fontFamily: {
Lexend: ['Lexend'],
},
animation: {
'slide-up': 'slideUp 0.5s ease-out',
},
keyframes: {
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
},
},
},
plugins: [],
};