Forest Canopy Color Palette
Nature Color Palette
About This Palette
Lush greens inspired by dense forest foliage.
CSS Variables
:root {
--color-1: #006400;
--color-2: #228B22;
--color-3: #32CD32;
--color-4: #90EE90;
--color-5: #556B2F;
}Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'forest-canopy': {
'1': '#006400',
'2': '#228B22',
'3': '#32CD32',
'4': '#90EE90',
'5': '#556B2F',
},
},
},
},
};