/* CSS */
.color-1 {
color: #6D9CC5;
}
.color-2 {
color: #8EC4E6;
}
.color-3 {
color: #E4F1FB;
}
.color-4 {
color: #F8D6A0;
}
.color-5 {
color: #F09E75;
}
/* CSS Variables */
:root {
--color-1: #6D9CC5;
--color-2: #8EC4E6;
--color-3: #E4F1FB;
--color-4: #F8D6A0;
--color-5: #F09E75;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #6D9CC5, #8EC4E6, #E4F1FB, #F8D6A0, #F09E75);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #6D9CC5, #8EC4E6, #E4F1FB, #F8D6A0, #F09E75);
}
Relevance In Hues color palette created on .