/* CSS */
.color-1 {
  color: #FF4D00;
}
.color-2 {
  color: #FF6D1F;
}
.color-3 {
  color: #FF9142;
}
.color-4 {
  color: #FFB561;
}
.color-5 {
  color: #FFD480;
}
/* CSS Variables */
:root {
  --color-1: #FF4D00;
  --color-2: #FF6D1F;
  --color-3: #FF9142;
  --color-4: #FFB561;
  --color-5: #FFD480;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #FF4D00, #FF6D1F, #FF9142, #FFB561, #FFD480);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #FF4D00, #FF6D1F, #FF9142, #FFB561, #FFD480);
 }Orange Flame color palette created on .