/* CSS */
.color-1 {
color: #F0A800;
}
.color-2 {
color: #D55F20;
}
.color-3 {
color: #B95063;
}
.color-4 {
color: #7F3F92;
}
.color-5 {
color: #5F6B95;
}
/* CSS Variables */
:root {
--color-1: #F0A800;
--color-2: #D55F20;
--color-3: #B95063;
--color-4: #7F3F92;
--color-5: #5F6B95;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F0A800, #D55F20, #B95063, #7F3F92, #5F6B95);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F0A800, #D55F20, #B95063, #7F3F92, #5F6B95);
}
Divine Discord color palette created on .