Coconut

HEX: #965A3E | Modern Palette

On White
5.48:1
PASS
On Black
3.83:1
FAIL

Color Specifications

HEX
#965A3E
RGB
150, 90, 62
HSL
19°, 58% ,58%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #965A3E from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #70703B
Protanopia #63633F
Tritanopia #985757
Achromatopsia #696969

Frequently Asked Questions

Coconut (#965A3E) is a color with RGB(150, 90, 62) and HSL(19.09°, 58.67%, 58.82%).

#965A3E pairs strongly with #3E7A96 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#965A3E is suitable for Text, Button, Logo and works well with Warm styles.

#965A3E is commonly associated with Romantic.

The name Coconut is linked to coco from Portuguese, meaning grinning face, or monkey-face.

Name, History & Etymology

Origin Word coco
Meaning grinning face, or monkey-face
Language Portuguese
First Recorded Use 16th Century

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.

Similar Named Colors

Spicy Mix #8B5F4D ΔE 4.82
Dark Brown-tangelo #88654E ΔE 6.96
Chestnut #954535 ΔE 7.84
Redwood #A45A52 ΔE 8.68

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);
}