-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (35 loc) · 848 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (35 loc) · 848 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
34
35
36
37
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'src/pages/**/*.{js,jsx,ts,tsx}',
'src/components/**/*.{js,jsx,ts,tsx}',
'src/items/**/*.{js,jsx,ts,tsx}',
'src/shared/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
screens: {
xs: '500px',
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
},
colors: {
primary: '#1c4e80',
loginBg: '#F2F5FF',
AdminBg: '#F4F6F8',
// menu item
menuItemHighlight: '#EFEFEF',
menuItemTextColor: '#717171',
// buttons
editBtn: '#FAC300',
removeBtn: '#F76464',
},
},
},
plugins: [],
};