Wheat
HEX: #F5DEB3 | Modern Palette
Color Specifications
#F5DEB3
245, 222, 179
39°, 76% ,83%
0, 9, 27, 4
About Wheat
Wheat (#F5DEB3) is a color with RGB(245, 222, 179) and HSL(39.1°, 76.7%, 83.1%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #B3CAF5, which creates strong contrast. Its triadic palette includes #B3F5DE and #DEB3F5. The name comes from hwǣte (Old English).
- HEX: #F5DEB3
- RGB: 245, 222, 179
- HSL: 39.1°, 76.7%, 83.1%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #B3CAF5
- Triadic colors: #B3F5DE, #DEB3F5
- The name comes from hwǣte (Old English).
Live Components
Color Palettes
Wheat #F5DEB3 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
Wheat #F5DEB3 pairs with #B3CAF5 as its complementary color, and #B3F5DE and #DEB3F5 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#E5E5B2
#E1E1B3
#F9D9D9
#E0E0E0
Frequently Asked Questions
Name, History & Etymology
History
The cultivation of wheat dates back approximately 10,000 years to the Fertile Crescent region. It was one of the first domesticated crops and quickly spread across the globe due to its adaptability and nutritional value. The word 'wheat' has cognates in many Germanic languages (e.g., German 'Weizen', Dutch 'tarwe' from 'weit') and its linguistic lineage reflects its ancient and widespread importance. Over centuries, various species and cultivars of wheat have been developed, leading to the diverse types we see today (e.g., durum, common, spelt).
First Recorded Use
The word 'wheat' has roots in Proto-Germanic '*hwaitiz' and Proto-Indo-European '*kweyt-'. Its earliest recorded use in Old English (as 'hwǣte') dates back to texts from before 900 AD, referring to the cereal grain.
Cultural Associations
Wheat holds immense cultural and economic significance worldwide. It is a staple food for a large portion of the global population, forming the basis of bread, pasta, noodles, and many other products. In many cultures, wheat and bread symbolize life, sustenance, and prosperity. It plays a central role in religious ceremonies (e.g., communion in Christianity, challah in Judaism) and traditional festivals. Its cultivation has shaped landscapes, economies, and human societies for millennia.
Code Snippets
/* Background */
.element {
background-color: #F5DEB3;
}
/* Text */
.element {
color: #F5DEB3;
}
/* Border */
.element {
border: 1px solid #F5DEB3;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F5DEB3,
#B3CAF5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F5DEB3,
#B3CAF5
);
}
// SCSS variable
$wheat: #F5DEB3;
// With RGB channels (useful for rgba() usage)
$wheat-r: 245;
$wheat-g: 222;
$wheat-b: 179;
// Usage
.element {
background-color: $wheat;
color: rgba($wheat-r, $wheat-g, $wheat-b, 0.8);
}