/* CSS */
.color-1 {
color: #21098a;
}
.color-2 {
color: #cb1de8;
}
.color-3 {
color: #daf22d;
}
.color-4 {
color: #14443a;
}
.color-5 {
color: #70090a;
}
/* CSS Variables */
:root {
--color-1: #21098a;
--color-2: #cb1de8;
--color-3: #daf22d;
--color-4: #14443a;
--color-5: #70090a;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #21098a, #cb1de8, #daf22d, #14443a, #70090a);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #21098a, #cb1de8, #daf22d, #14443a, #70090a);
}