/* CSS */
.color-1 {
color: #ED9F02;
}
.color-2 {
color: #F08605;
}
.color-3 {
color: #D85F0E;
}
.color-4 {
color: #A54F1D;
}
.color-5 {
color: #6C2B1E;
}
/* CSS Variables */
:root {
--color-1: #ED9F02;
--color-2: #F08605;
--color-3: #D85F0E;
--color-4: #A54F1D;
--color-5: #6C2B1E;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #ED9F02, #F08605, #D85F0E, #A54F1D, #6C2B1E);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #ED9F02, #F08605, #D85F0E, #A54F1D, #6C2B1E);
}
Orange Disco color palette created on .