/* CSS */
.color-1 {
color: #1F8C8E;
}
.color-2 {
color: #4EB5B7;
}
.color-3 {
color: #92DFE3;
}
.color-4 {
color: #B2E6E5;
}
.color-5 {
color: #E6F9F9;
}
/* CSS Variables */
:root {
--color-1: #1F8C8E;
--color-2: #4EB5B7;
--color-3: #92DFE3;
--color-4: #B2E6E5;
--color-5: #E6F9F9;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1F8C8E, #4EB5B7, #92DFE3, #B2E6E5, #E6F9F9);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1F8C8E, #4EB5B7, #92DFE3, #B2E6E5, #E6F9F9);
}
Teal Machine color palette created on .