/* CSS */
.color-1 {
color: #F0E78E;
}
.color-2 {
color: #E6A35C;
}
.color-3 {
color: #D57153;
}
.color-4 {
color: #A83E5A;
}
.color-5 {
color: #6D2C6D;
}
/* CSS Variables */
:root {
--color-1: #F0E78E;
--color-2: #E6A35C;
--color-3: #D57153;
--color-4: #A83E5A;
--color-5: #6D2C6D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F0E78E, #E6A35C, #D57153, #A83E5A, #6D2C6D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F0E78E, #E6A35C, #D57153, #A83E5A, #6D2C6D);
}
Yuu's Embrace color palette created on .