-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 893 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (36 loc) · 893 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} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
background: 'hsl(0 0% 100%)',
foreground: 'hsl(222.2 47.4% 11.2%)',
muted: 'hsl(210 40% 96.1%)',
mutedForeground: 'hsl(215.4 16.3% 46.9%)',
primary: '#475569',
secondary: '#CBD5E1',
border: 'hsl(214.3 31.8% 91.4%)'
}
},
screens: {
// max-width
'max-2xl': { max: '1367px' },
'max-xl': { max: '1280px' },
'max-lg': { max: '1024px' },
'max-md': { max: '768px' },
'max-sm': { max: '640px' },
//min-width
xs: '480px',
sm: '641px',
md: '769px',
lg: '1025px',
xl: '1281px',
'2xl': '1537px'
}
},
corePlugins: {
preflight: false
},
plugins: ['prettier-plugin-tailwindcss']
};