Ocean Breeze Color Palette
Cool Color Palette
About This Palette
Cool ocean blues that evoke calm seas and clear skies.
CSS Variables
:root {
--color-1: #0000FF;
--color-2: #00BFFF;
--color-3: #40E0D0;
--color-4: #87CEEB;
--color-5: #1E90FF;
}Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'ocean-breeze': {
'1': '#0000FF',
'2': '#00BFFF',
'3': '#40E0D0',
'4': '#87CEEB',
'5': '#1E90FF',
},
},
},
},
};