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
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 #F5DEB3 from deepest shade to lightest tint.
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);
}