Indian Yellow

HEX: #E3A857 | Modern Palette

On White
2.10:1
FAIL
On Black
10.00:1
PASS

Color Specifications

HEX
#E3A857
RGB
227, 168, 87
HSL
34°, 71% ,61%
CMYK
0, 26, 62, 11

About Indian Yellow

Indian Yellow (#E3A857) is a color with RGB(227, 168, 87) and HSL(34.7°, 71.4%, 61.6%). It is commonly associated with Energetic, Playful moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #5792E3, which creates strong contrast. Its triadic palette includes #57E3A8 and #A857E3. The name comes from Indian Yellow (English).

  • HEX: #E3A857
  • RGB: 227, 168, 87
  • HSL: 34.7°, 71.4%, 61.6%
  • Mood: Energetic, Playful
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #5792E3
  • Triadic colors: #57E3A8, #A857E3
  • The name comes from Indian Yellow (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 #E3A857 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #BCBC53
Protanopia #B0B058
Tritanopia #E8A1A1
Achromatopsia #B3B3B3

Frequently Asked Questions

Indian Yellow (#E3A857) is a color with RGB(227, 168, 87) and HSL(34.7°, 71.4%, 61.6%).

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

#E3A857 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#E3A857 is commonly associated with Energetic, Playful.

The name Indian Yellow is linked to Indian Yellow from English, meaning A yellow pigment historically sourced from India..

Name, History & Etymology

Origin Word Indian Yellow
Meaning A yellow pigment historically sourced from India.
Language English
First Recorded Use Late 18th Century

History

Indian Yellow was a vibrant, transparent, and lightfast yellow pigment that gained popularity in European art during the late 18th and 19th centuries. Its exact origin and manufacturing process were a mystery to Europeans for a long time. It was eventually discovered that the pigment was produced in rural India, specifically in the Munger district of Bihar, from the urine of cows fed exclusively on mango leaves and water. The urine was collected, heated, and the resulting yellow precipitate (magnesium euxanthate) was formed into balls or cakes and dried over a fire. These balls were then exported. Due to concerns about animal cruelty and the nutritional deprivation of the cows, the production of genuine Indian Yellow was banned in India in the early 20th century (around 1908-1921, sources vary). Modern 'Indian Yellow' paints are now made from synthetic organic pigments that mimic the hue and transparency of the original.

First Recorded Use

Circa 1780s (as a pigment in Europe)

Cultural Associations

The pigment was highly valued by artists for its unique warm, glowing quality and transparency, making it ideal for glazes and capturing light effects. It was used by prominent artists like J.M.W. Turner, Vincent van Gogh, and John Singer Sargent. The exotic and somewhat mysterious origin added to its allure. The ethical concerns surrounding its production highlight a historical intersection of art materials, trade, and animal welfare.

Similar Named Colors

Earth Yellow #E1A95F ΔE 1.23
Sunray #E3AB57 ΔE 1.34
Fawn #E5AA70 ΔE 5.01
Marigold #EAA221 ΔE 5.65

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #E3A857,
        #5792E3
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #E3A857,
        #5792E3
    );
}

// SCSS variable
$indian-yellow: #E3A857;

// With RGB channels (useful for rgba() usage)
$indian-yellow-r: 227;
$indian-yellow-g: 168;
$indian-yellow-b: 87;

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