-
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) · 866 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 866 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} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/react-tailwindcss-datepicker/dist/index.esm.js',
],
theme: {
fontFamily: {
sans: 'Helvetica, Arial, sans-serif',
},
extend: {
spacing: { full: '100%' },
flex: {
1.4: '1.4 1.4 0%',
},
colors: {
teal: 'rgb(23,72, 77)',
'teal-500': 'rgb(23, 72, 77)',
'teal-100': 'rgba(23, 72, 77, 0.25)',
'teal-90': 'rgba(23, 72, 77, 0.9)',
'teal-80': 'rgba(23, 72, 77, 0.8)',
'teal-70': 'rgba(23, 72, 77, 0.7)',
'teal-60': 'rgba(23, 72, 77, 0.6)',
'teal-50': 'rgba(23, 72, 77, 0.5)',
'light-teal': '#D3E4EC',
},
},
},
corePlugins: {
divideStyle: true,
},
plugins: [require('tailwindcss-safe-area')],
}