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
Dark Brown-tangelo #88654E 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 Brown-tangelo #88654E pairs with #4E7188 as its complementary color, and #4E8865 and #654E88 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}