Storm Cloud Color Palette
Neutral Color Palette
About This Palette
Dramatic storm gray palette for moody aesthetics.
CSS Variables
:root {
--color-1: #424242;
--color-2: #616161;
--color-3: #757575;
--color-4: #9E9E9E;
--color-5: #B0B0B0;
}Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'storm-cloud': {
'1': '#424242',
'2': '#616161',
'3': '#757575',
'4': '#9E9E9E',
'5': '#B0B0B0',
},
},
},
},
};