Straw

HEX: #E4D96F | Modern Palette

On White
1.45:1
FAIL
On Black
14.45:1
PASS

Color Specifications

HEX
#E4D96F
RGB
228, 217, 111
HSL
54°, 68% ,66%
CMYK
0, 5, 51, 11

About Straw

Straw (#E4D96F) is a color with RGB(228, 217, 111) and HSL(54.4°, 68.4%, 66.5%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #6F7AE4, which creates strong contrast. Its triadic palette includes #6FE4D9 and #D96FE4. The name comes from streaw (Old English).

  • HEX: #E4D96F
  • RGB: 228, 217, 111
  • HSL: 54.4°, 68.4%, 66.5%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #6F7AE4
  • Triadic colors: #6FE4D9, #D96FE4
  • The name comes from streaw (Old 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 #E4D96F from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #DCDC6E
Protanopia #DADA6F
Tritanopia #EDCFCF
Achromatopsia #D6D6D6

Frequently Asked Questions

Straw (#E4D96F) is a color with RGB(228, 217, 111) and HSL(54.4°, 68.4%, 66.5%).

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

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

#E4D96F is commonly associated with Playful.

The name Straw is linked to streaw from Old English, meaning material consisting of the dry stalks of cereals after threshing.

Name, History & Etymology

Origin Word streaw
Meaning material consisting of the dry stalks of cereals after threshing
Language Old English
First Recorded Use Before 12th Century

History

The word 'straw' has deep Germanic roots, tracing back to Proto-Germanic '*strawją' and further to Proto-Indo-European '*strow-'. Its meaning has remained remarkably consistent over centuries, referring to the dried stalks of grain, primarily wheat, rye, oats, or barley, after the grain has been removed. Historically, straw has been an invaluable resource for various purposes beyond just animal feed or bedding. It was used for roofing (thatch), basketry, hat making, and even as a building material (e.g., wattle and daub, straw bales). The phrase 'straw man' (a fallacious argument) emerged in the 17th century, referring to an easily defeated opponent, much like a scarecrow made of straw. The drinking 'straw' as we know it today, initially made from natural rye grass, gained popularity in the late 19th century with the invention of the paper straw by Marvin C. Stone in 1888.

First Recorded Use

c. 888 AD (King Alfred's translation of Boethius's 'Consolation of Philosophy')

Cultural Associations

Straw holds significant cultural symbolism across various societies. It is often associated with agriculture, harvest, and rural life. In many folk traditions, straw figures (like scarecrows or effigies) are used in rituals or festivals, sometimes representing fertility, protection, or the passing of seasons. The 'straw hat' is a common symbol of summer, leisure, and often, a rustic or working-class aesthetic. In literature and art, straw can evoke images of simplicity, poverty (e.g., 'sleeping on straw'), or vulnerability. The 'last straw' idiom signifies the final, unbearable burden in a series of difficulties, referencing the idea of a camel's back breaking under too much weight. The 'three little pigs' fairy tale famously features a house made of straw, highlighting its perceived fragility.

Similar Named Colors

Arylide Yellow #E9D66B ΔE 2.20
Flax #EEDC82 ΔE 3.24
Buff #F0DC82 ΔE 3.64
Light Khaki #F0E68C ΔE 3.90

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #E4D96F,
        #6F7AE4
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #E4D96F,
        #6F7AE4
    );
}

// SCSS variable
$straw: #E4D96F;

// With RGB channels (useful for rgba() usage)
$straw-r: 228;
$straw-g: 217;
$straw-b: 111;

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