2023-02-07 17:57:21 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-02-10 21:20:30 +00:00
|
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
2023-02-07 17:57:21 +00:00
|
|
|
theme: {
|
2023-02-10 21:20:30 +00:00
|
|
|
extend: {
|
|
|
|
spacing: {
|
|
|
|
112: '28rem',
|
|
|
|
128: '32rem',
|
|
|
|
},
|
2023-02-11 16:56:44 +00:00
|
|
|
colors: {
|
|
|
|
'eerie-black': '#212121',
|
|
|
|
jet: '#343541',
|
|
|
|
'gray-alpha': 'rgba(0,0,0, .1)',
|
2023-02-18 11:22:14 +00:00
|
|
|
'gray-1000': '#F6F6F6',
|
2023-02-22 04:32:05 +00:00
|
|
|
'red-1000': 'rgb(254, 202, 202)',
|
|
|
|
'red-2000' : '#F44336',
|
|
|
|
'red-3000': '#621B16',
|
2023-02-11 16:56:44 +00:00
|
|
|
},
|
2023-02-10 21:20:30 +00:00
|
|
|
},
|
2023-02-07 17:57:21 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
2023-02-11 16:56:44 +00:00
|
|
|
};
|