/* CSS */
.color-1 {
color: #4DB8FF;
}
.color-2 {
color: #60E2F6;
}
.color-3 {
color: #90F9F2;
}
.color-4 {
color: #BDFFDB;
}
.color-5 {
color: #E3F8E2;
}
/* CSS Variables */
:root {
--color-1: #4DB8FF;
--color-2: #60E2F6;
--color-3: #90F9F2;
--color-4: #BDFFDB;
--color-5: #E3F8E2;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4DB8FF, #60E2F6, #90F9F2, #BDFFDB, #E3F8E2);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4DB8FF, #60E2F6, #90F9F2, #BDFFDB, #E3F8E2);
}
Aquatic Breeze color palette created on .