DocsGPT/frontend/tailwind.config.cjs

23 lines
508 B
JavaScript
Raw Normal View History

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)',
'gray-1000': '#F6F6F6',
'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
};