Dark Yellow
HEX: #9B870C | Modern Palette
Color Specifications
#9B870C
155, 135, 12
51°, 92% ,60%
0, 12.9, 92.26, 39.22
About Dark Yellow
Dark Yellow (#9B870C) is a color with RGB(155, 135, 12) and HSL(51.61°, 92.26%, 60.78%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #0C209B, which creates strong contrast. Its triadic palette includes #0C9B87 and #870C9B.
- HEX: #9B870C
- RGB: 155, 135, 12
- HSL: 51.61°, 92.26%, 60.78%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #0C209B
- Triadic colors: #0C9B87, #870C9B
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 #9B870C from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #9B870C;
}
/* Text */
.element {
color: #9B870C;
}
/* Border */
.element {
border: 1px solid #9B870C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9B870C,
#3F59F7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9B870C,
#3F59F7
);
}
// SCSS variable
$dark-yellow: #9B870C;
// With RGB channels (useful for rgba() usage)
$dark-yellow-r: 155;
$dark-yellow-g: 135;
$dark-yellow-b: 12;
// Usage
.element {
background-color: $dark-yellow;
color: rgba($dark-yellow-r, $dark-yellow-g, $dark-yellow-b, 0.8);
}