Coconut
HEX: #965A3E | Modern Palette
Color Specifications
#965A3E
150, 90, 62
19°, 58% ,58%
0, 40, 58.67, 41.18
About Coconut
Coconut (#965A3E) is a color with RGB(150, 90, 62) and HSL(19.09°, 58.67%, 58.82%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #3E7A96, which creates strong contrast. Its triadic palette includes #3E965A and #5A3E96. The name comes from coco (Portuguese).
- HEX: #965A3E
- RGB: 150, 90, 62
- HSL: 19.09°, 58.67%, 58.82%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #3E7A96
- Triadic colors: #3E965A, #5A3E96
- The name comes from coco (Portuguese).
Live Components
Color Palettes
Coconut #965A3E 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
Coconut #965A3E pairs with #3E7A96 as its complementary color, and #3E965A and #5A3E96 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 word 'coconut' entered English in the 16th century from Portuguese 'coco'. The tree itself is native to tropical regions, likely originating in Southeast Asia, and has been cultivated for thousands of years. Its spread across the globe is attributed to its ability to float and survive long journeys across oceans, as well as human cultivation and trade. The term 'nut' is botanically inaccurate; a coconut is a drupe.
First Recorded Use
The Portuguese explorers, upon seeing the three indentations on the base of the coconut, were reminded of a 'coco' or 'grinning face'/'monkey-face'.
Cultural Associations
Coconuts hold significant cultural and economic importance in many tropical regions. They are a staple food source, providing water, milk, oil, and meat. The husks are used for fiber (coir), the shells for crafts and charcoal, and the wood for construction. In some cultures, coconuts are used in religious ceremonies and traditional medicine. They are often seen as a symbol of tropical paradise.
Code Snippets
/* Background */
.element {
background-color: #965A3E;
}
/* Text */
.element {
color: #965A3E;
}
/* Border */
.element {
border: 1px solid #965A3E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#965A3E,
#58ACD4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#965A3E,
#58ACD4
);
}
// SCSS variable
$coconut: #965A3E;
// With RGB channels (useful for rgba() usage)
$coconut-r: 150;
$coconut-g: 90;
$coconut-b: 62;
// Usage
.element {
background-color: $coconut;
color: rgba($coconut-r, $coconut-g, $coconut-b, 0.8);
}