Ice Cream Color Palette
Soft Color Palette
About This Palette
Sweet ice cream pastels for cheerful designs.
CSS Variables
:root {
--color-1: #FFD1DC;
--color-2: #FFFACD;
--color-3: #98FB98;
--color-4: #ADD8E6;
--color-5: #DDA0DD;
}Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'ice-cream': {
'1': '#FFD1DC',
'2': '#FFFACD',
'3': '#98FB98',
'4': '#ADD8E6',
'5': '#DDA0DD',
},
},
},
},
};