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
Dark Goldenrod #B8860B is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dark Goldenrod #B8860B pairs with #0B3DB8 as its complementary color, and #0BB886 and #860BB8 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}