groupomania/client/tailwind.config.cjs

19 lines
407 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',
},
},
},
plugins: [],
};