Coral Reef Color Palette
Nature Color Palette
About This Palette
Underwater coral reef palette with warm corals and cool teals.
CSS Variables
:root {
--color-1: #FF7F50;
--color-2: #FA8072;
--color-3: #FFA07A;
--color-4: #40E0D0;
--color-5: #48D1CC;
}Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'coral-reef': {
'1': '#FF7F50',
'2': '#FA8072',
'3': '#FFA07A',
'4': '#40E0D0',
'5': '#48D1CC',
},
},
},
},
};