Blond

HEX: #FAF0BE | Modern Palette

On White
1.15:1
FAIL
On Black
18.27:1
PASS

Color Specifications

HEX
#FAF0BE
RGB
250, 240, 190
HSL
50°, 85% ,86%
CMYK
0, 4, 24, 2

About Blond

Blond (#FAF0BE) is a color with RGB(250, 240, 190) and HSL(50°, 85.7%, 86.3%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #BEC8FA, which creates strong contrast. Its triadic palette includes #BEFAF0 and #F0BEFA. The name comes from blund (Old French).

  • HEX: #FAF0BE
  • RGB: 250, 240, 190
  • HSL: 50°, 85.7%, 86.3%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #BEC8FA
  • Triadic colors: #BEFAF0, #F0BEFA
  • The name comes from blund (Old French).

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #F3F3BE
Protanopia #F1F1BE
Tritanopia #FFEAEA
Achromatopsia #EFEFEF

Frequently Asked Questions

Blond (#FAF0BE) is a color with RGB(250, 240, 190) and HSL(50°, 85.7%, 86.3%).

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

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

#FAF0BE is commonly associated with Playful.

The name Blond is linked to blund from Old French, meaning a color between golden and light chestnut.

Name, History & Etymology

Origin Word blund
Meaning a color between golden and light chestnut
Language Old French
First Recorded Use Middle Ages

History

The word 'blond' (and its feminine form 'blonde') entered English from Old French. Its Germanic roots are evident in cognates like Old High German 'blunt' and Old English 'blonden-feax' (meaning 'blond-haired'). The term originally referred to a specific hair color, often associated with fair skin. Over centuries, its usage expanded to describe other things of a similar light, yellowish hue, though its primary association remains with hair color. The distinction between 'blond' (masculine) and 'blonde' (feminine) is often maintained in English, especially when referring to people, though 'blond' is increasingly used as a gender-neutral adjective.

First Recorded Use

c. 1489

Cultural Associations

Blond hair has been culturally significant across various societies. In some ancient cultures, it was associated with divinity or nobility. In modern Western culture, 'blond' hair is often linked to ideals of beauty, youth, and sometimes, a stereotype of naivety or lack of intelligence (the 'dumb blonde' trope), which has been widely critiqued. The color is also frequently used in advertising and media to evoke feelings of lightness, freshness, or natural beauty. The term 'blond' is also used in culinary contexts, such as 'blond beer' or 'blond chocolate', to describe lighter varieties.

Similar Named Colors

Lemon Meringue #F6EABE ΔE 2.05
Lemon Chiffon #FFFACD ΔE 2.79
Vanilla #F3E5AB ΔE 3.14
Pale Spring Bud #ECEBBD ΔE 3.39

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FAF0BE,
        #BEC8FA
    );
}

// SCSS variable
$blond: #FAF0BE;

// With RGB channels (useful for rgba() usage)
$blond-r: 250;
$blond-g: 240;
$blond-b: 190;

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