/* CSS */
.color-1 {
color: #00B3AA;
}
.color-2 {
color: #1DB4B4;
}
.color-3 {
color: #39C6B8;
}
.color-4 {
color: #5EE4D8;
}
.color-5 {
color: #A2E6E2;
}
/* CSS Variables */
:root {
--color-1: #00B3AA;
--color-2: #1DB4B4;
--color-3: #39C6B8;
--color-4: #5EE4D8;
--color-5: #A2E6E2;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #00B3AA, #1DB4B4, #39C6B8, #5EE4D8, #A2E6E2);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #00B3AA, #1DB4B4, #39C6B8, #5EE4D8, #A2E6E2);
}
Turquoise Breeze color palette created on .