/* CSS */
.color-1 {
color: #8D868C;
}
.color-2 {
color: #A7A0A4;
}
.color-3 {
color: #BFBEC1;
}
.color-4 {
color: #DDE1E9;
}
.color-5 {
color: #F6FAFE;
}
/* CSS Variables */
:root {
--color-1: #8D868C;
--color-2: #A7A0A4;
--color-3: #BFBEC1;
--color-4: #DDE1E9;
--color-5: #F6FAFE;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #8D868C, #A7A0A4, #BFBEC1, #DDE1E9, #F6FAFE);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #8D868C, #A7A0A4, #BFBEC1, #DDE1E9, #F6FAFE);
}
Melancholic Blues color palette created on .