/* CSS */
.color-1 {
color: #F7E4A1;
}
.color-2 {
color: #FFD3A3;
}
.color-3 {
color: #FFB19E;
}
.color-4 {
color: #FF858B;
}
.color-5 {
color: #D65C8D;
}
/* CSS Variables */
:root {
--color-1: #F7E4A1;
--color-2: #FFD3A3;
--color-3: #FFB19E;
--color-4: #FF858B;
--color-5: #D65C8D;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F7E4A1, #FFD3A3, #FFB19E, #FF858B, #D65C8D);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F7E4A1, #FFD3A3, #FFB19E, #FF858B, #D65C8D);
}Visionary Hues color palette created on .