:root {
--color-1: #4267B2;
--color-2: #898F9C;
--color-3: #000000;
}// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
palette: {
'1': '#4267B2',
'2': '#898F9C',
'3': '#000000',
}
}
}
}
}