groupomania/client/tailwind.config.cjs

26 lines
530 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.tsx'],
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
red: '#fd2d01',
'red-light': '#ffd7d7',
'grey': '#4E5166',
'grey-light': '#717695',
'grey-dark': '#2E3144',
},
zIndex: {
'100': '100',
'1000': '1000',
},
padding: {
'2.5': '0.625rem',
},
},
},
plugins: [],
}