Wheat

HEX: #F5DEB3 | Modern Palette

On White
1.31:1
FAIL
On Black
15.98:1
PASS

Color Specifications

HEX
#F5DEB3
RGB
245, 222, 179
HSL
39°, 76% ,83%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #E5E5B2
Protanopia #E1E1B3
Tritanopia #F9D9D9
Achromatopsia #E0E0E0

Frequently Asked Questions

Wheat (#F5DEB3) is a color with RGB(245, 222, 179) and HSL(39.1°, 76.7%, 83.1%).

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

#F5DEB3 is suitable for Text, Button, Background and works well with Warm styles.

#F5DEB3 is commonly associated with Playful.

The name Wheat is linked to hwǣte from Old English, meaning wheat.

Name, History & Etymology

Origin Word hwǣte
Meaning wheat
Language Old English
First Recorded Use Before 900 AD

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.

Similar Named Colors

Peach Yellow #FADFAD ΔE 1.89
Peach #FFE5B4 ΔE 2.20
Dutch White #EFDFBB ΔE 2.72
Banana Mania #FAE7B5 ΔE 3.11

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);
}