:root {
--color-1: #E60023;
--color-2: #BD081C;
--color-3: #600000;
--color-4: #111111;
}// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
palette: {
'1': '#E60023',
'2': '#BD081C',
'3': '#600000',
'4': '#111111',
}
}
}
}
}