Golden Brown

HEX: #996515 | Modern Palette

On White
4.97:1
PASS
On Black
4.23:1
FAIL

Color Specifications

HEX
#996515
RGB
153, 101, 21
HSL
36°, 86% ,60%
CMYK
0, 33.99, 86.27, 40

About Golden Brown

Golden Brown (#996515) is a color with RGB(153, 101, 21) and HSL(36.36°, 86.27%, 60%). 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 #154999, which creates strong contrast. Its triadic palette includes #159965 and #651599. The name comes from Golden Brown (English).

  • HEX: #996515
  • RGB: 153, 101, 21
  • HSL: 36.36°, 86.27%, 60%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #154999
  • Triadic colors: #159965, #651599
  • The name comes from Golden Brown (English).

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #77770B
Protanopia #6C6C17
Tritanopia #9D5F5F
Achromatopsia #707070

Frequently Asked Questions

Golden Brown (#996515) is a color with RGB(153, 101, 21) and HSL(36.36°, 86.27%, 60%).

#996515 pairs strongly with #154999 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#996515 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#996515 is commonly associated with Energetic, Bold.

The name Golden Brown is linked to Golden Brown from English, meaning A color description, specifically a shade of brown with a yellowish or golden tint..

Name, History & Etymology

Origin Word Golden Brown
Meaning A color description, specifically a shade of brown with a yellowish or golden tint.
Language English
First Recorded Use Late Middle English

History

The phrase 'golden brown' is a straightforward compound adjective used to describe a specific color. Its history is tied to the individual histories of 'golden' and 'brown'. 'Golden' refers to the color of gold, and 'brown' is a common earth tone. The combination evokes warmth, richness, and often a desirable cooked or toasted quality (e.g., 'golden brown toast', 'golden brown turkey'). It has been used consistently across centuries to describe various objects, foods, and even hair or animal fur.

First Recorded Use

The combination of 'golden' and 'brown' as a descriptive phrase likely emerged as soon as both individual words were in common use and people needed to describe such a color. 'Golden' dates back to Old English (gylden) and 'brown' to Old English (brūn). Their combination for color description would be natural and early.

Cultural Associations

The color 'golden brown' often carries positive connotations in many cultures. It is associated with: - **Food:** Perfectly cooked, toasted, or baked items (e.g., bread, pastries, roasted meats). This association implies deliciousness and readiness. - **Nature:** Autumn leaves, certain types of wood, animal fur (e.g., some dog breeds, deer). - **Beauty:** Often used to describe desirable hair colors or tanned skin. - **Warmth and Richness:** The 'golden' aspect adds a sense of value, warmth, and richness to the 'brown'. One notable cultural reference is the 1982 song 'Golden Brown' by The Stranglers, which famously uses the phrase, though its lyrics are often interpreted as having a double meaning, referring to both a person and heroin.

Similar Named Colors

Grizzly #885818 ΔE 5.70
Ginger #B06500 ΔE 6.12
Drab #967117 ΔE 6.42

Code Snippets

/* Background */
.element {
    background-color: #996515;
}

/* Text */
.element {
    color: #996515;
}

/* Border */
.element {
    border: 1px solid #996515;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #996515,
        #4186F1
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #996515,
        #4186F1
    );
}

// SCSS variable
$golden-brown: #996515;

// With RGB channels (useful for rgba() usage)
$golden-brown-r: 153;
$golden-brown-g: 101;
$golden-brown-b: 21;

// Usage
.element {
    background-color: $golden-brown;
    color: rgba($golden-brown-r, $golden-brown-g, $golden-brown-b, 0.8);
}