This palette evokes the feeling of serene ocean waves and vibrant coral reefs
/* CSS */
.color-1 {
color: #00BFFF;
}
.color-2 {
color: #1DAAEB;
}
.color-3 {
color: #005B75;
}
.color-4 {
color: #8AEBE6;
}
.color-5 {
color: #FF6F61;
}
/* CSS Variables */
:root {
--color-1: #00BFFF;
--color-2: #1DAAEB;
--color-3: #005B75;
--color-4: #8AEBE6;
--color-5: #FF6F61;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #00BFFF, #1DAAEB, #005B75, #8AEBE6, #FF6F61);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #00BFFF, #1DAAEB, #005B75, #8AEBE6, #FF6F61);
}
Aqua Vibes color palette created on .