Blond
HEX: #FAF0BE | Modern Palette
Color Specifications
#FAF0BE
250, 240, 190
50°, 85% ,86%
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
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 #FAF0BE from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}