/* CSS */
.color-1 {
color: #00AAFF;
}
.color-2 {
color: #2BC2CA;
}
.color-3 {
color: #5FD3C2;
}
.color-4 {
color: #9BE8B9;
}
.color-5 {
color: #F5FFB3;
}
/* CSS Variables */
:root {
--color-1: #00AAFF;
--color-2: #2BC2CA;
--color-3: #5FD3C2;
--color-4: #9BE8B9;
--color-5: #F5FFB3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #00AAFF, #2BC2CA, #5FD3C2, #9BE8B9, #F5FFB3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #00AAFF, #2BC2CA, #5FD3C2, #9BE8B9, #F5FFB3);
}
Turquoise Dreams color palette created on .