Arctic Frost Color Palette
Cool Color Palette
About This Palette
Icy whites and pale blues for crisp, clean designs.
CSS Variables
:root {
--color-1: #FFFFFF;
--color-2: #F5F5F5;
--color-3: #ADD8E6;
--color-4: #B0C4DE;
--color-5: #DCDCDC;
}Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'arctic-frost': {
'1': '#FFFFFF',
'2': '#F5F5F5',
'3': '#ADD8E6',
'4': '#B0C4DE',
'5': '#DCDCDC',
},
},
},
},
};