Straw
HEX: #E4D96F | Modern Palette
Color Specifications
#E4D96F
228, 217, 111
54°, 68% ,66%
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
Color Palettes
Straw #E4D96F 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
Straw #E4D96F pairs with #6F7AE4 as its complementary color, and #6FE4D9 and #D96FE4 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 '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.
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);
}