Gold Shades

amber, bright, yellow, sun, spring

Color Adjustments

Gold Shades Color Palette CSS

/* CSS */
.color-1 {
  color: #FFD900;
}

.color-2 {
  color: #FFC105;
}

.color-3 {
  color: #FFB300;
}

.color-4 {
  color: #FF9100;
}

.color-5 {
  color: #FF6E00;
}

/* CSS Variables */
:root {
  --color-1: #FFD900;
  --color-2: #FFC105;
  --color-3: #FFB300;
  --color-4: #FF9100;
  --color-5: #FF6E00;
}

Gold Shades Gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FFD900, #FFC105, #FFB300, #FF9100, #FF6E00);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FFD900, #FFC105, #FFB300, #FF9100, #FF6E00);
}

Gold Shades color palette created on .

91 views