Dark Brown-tangelo
HEX: #88654E | Modern Palette
Color Specifications
#88654E
136, 101, 78
23°, 42% ,53%
0, 25.74, 42.65, 46.67
About Dark Brown-tangelo
Dark Brown-tangelo (#88654E) is a color with RGB(136, 101, 78) and HSL(23.79°, 42.65%, 53.33%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #4E7188, which creates strong contrast. Its triadic palette includes #4E8865 and #654E88.
- HEX: #88654E
- RGB: 136, 101, 78
- HSL: 23.79°, 42.65%, 53.33%
- Mood: Earthy
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #4E7188
- Triadic colors: #4E8865, #654E88
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 #88654E from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #88654E;
}
/* Text */
.element {
color: #88654E;
}
/* Border */
.element {
border: 1px solid #88654E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#88654E,
#5592BB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#88654E,
#5592BB
);
}
// SCSS variable
$dark-brown-tangelo: #88654E;
// With RGB channels (useful for rgba() usage)
$dark-brown-tangelo-r: 136;
$dark-brown-tangelo-g: 101;
$dark-brown-tangelo-b: 78;
// Usage
.element {
background-color: $dark-brown-tangelo;
color: rgba($dark-brown-tangelo-r, $dark-brown-tangelo-g, $dark-brown-tangelo-b, 0.8);
}