-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.config.cjs
52 lines (51 loc) · 1.08 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#FF592C;',
purple:'#9757D7',
pink: '#EF466F',
green:'#45B36B',
},
secondary:{
DEFAULT:'#3772FF',
pink: '#E4D7CF',
yellow: '#FFD166',
purple:'#CDB4DB',
},
gray: {
DEFAULT:'#ffffff',
100:'#FCFCFD',
200: '#F4F5F6',
300:'#E6E8EC',
400:'#B1B5C4',
500:'#777E91',
600:'#353945',
700:'#23262F',
800:'#141416'
}
},
fontFamily: {
poppins: ['Poppins' ,'sans-sarif'],
dmsans: ['DM Sans', 'sans-sarif']
}
},
screens: {
xs: '480px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1440px',
'3xl': '1780px',
'4xl': '2160px', // only need to control product grid mode in ultra 4k device
},
},
plugins: [],
}