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
Blond #FAF0BE 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
Blond #FAF0BE pairs with #BEC8FA as its complementary color, and #BEFAF0 and #F0BEFA in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}