Vintage Film Color Palette
Neutral Color Palette
About This Palette
Muted vintage tones reminiscent of classic cinema.
CSS Variables
:root {
--color-1: #708090;
--color-2: #A9A9A9;
--color-3: #D3D3D3;
--color-4: #F5DEB3;
--color-5: #808080;
}Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'vintage-film': {
'1': '#708090',
'2': '#A9A9A9',
'3': '#D3D3D3',
'4': '#F5DEB3',
'5': '#808080',
},
},
},
},
};