Dark Goldenrod
HEX: #B8860B | Modern Palette
Color Specifications
#B8860B
184, 134, 11
42°, 88% ,38%
0, 27, 94, 28
About Dark Goldenrod
Dark Goldenrod (#B8860B) is a color with RGB(184, 134, 11) and HSL(42.7°, 88.7%, 38.2%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0B3DB8, which creates strong contrast. Its triadic palette includes #0BB886 and #860BB8. The name comes from Dark Goldenrod (English).
- HEX: #B8860B
- RGB: 184, 134, 11
- HSL: 42.7°, 88.7%, 38.2%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0B3DB8
- Triadic colors: #0BB886, #860BB8
- The name comes from Dark Goldenrod (English).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #B8860B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'goldenrod' itself is named after the plant of the same name, known for its vibrant yellow-gold flowers. As color palettes expanded and became more nuanced, modifiers like 'dark' were added to distinguish variations. 'Dark Goldenrod' gained significant recognition as an X11 color name, which was later adopted into web standards (HTML/CSS). This standardization cemented its place as a distinct, identifiable color.
First Recorded Use
The specific named color 'Dark Goldenrod' likely emerged with the standardization of color names for dyes, paints, and later, web colors. The general concept of a 'goldenrod' color existed earlier, but 'Dark Goldenrod' as a distinct, recognized shade is more modern.
Cultural Associations
Goldenrod colors often evoke feelings of autumn, harvest, warmth, and nature. They can be associated with rustic aesthetics, vintage styles, and natural dyes. 'Dark Goldenrod' specifically, with its deeper, richer tone, can convey a sense of maturity, richness, and earthy elegance. It's less bright than a pure yellow and more grounded, making it versatile for various design applications from fashion to home decor.
Code Snippets
/* Background */
.element {
background-color: #B8860B;
}
/* Text */
.element {
color: #B8860B;
}
/* Border */
.element {
border: 1px solid #B8860B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B8860B,
#0B3DB8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B8860B,
#0B3DB8
);
}
// SCSS variable
$dark-goldenrod: #B8860B;
// With RGB channels (useful for rgba() usage)
$dark-goldenrod-r: 184;
$dark-goldenrod-g: 134;
$dark-goldenrod-b: 11;
// Usage
.element {
background-color: $dark-goldenrod;
color: rgba($dark-goldenrod-r, $dark-goldenrod-g, $dark-goldenrod-b, 0.8);
}