mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-02 03:40:17 +00:00
24 lines
550 B
JavaScript
24 lines
550 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
spacing: {
|
|
112: '28rem',
|
|
128: '32rem',
|
|
},
|
|
colors: {
|
|
'eerie-black': '#212121',
|
|
jet: '#343541',
|
|
'gray-alpha': 'rgba(0,0,0, .1)',
|
|
'gray-1000': '#F6F6F6',
|
|
'gray-2000': 'rgba(0, 0, 0, 0.5)',
|
|
'red-1000': 'rgb(254, 202, 202)',
|
|
'red-2000': '#F44336',
|
|
'red-3000': '#621B16',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|