Isabelline
HEX: #F4F0EC | Modern Palette
Color Specifications
#F4F0EC
244, 240, 236
30°, 26% ,94%
0, 2, 3, 4
About Isabelline
Isabelline (#F4F0EC) is a color with RGB(244, 240, 236) and HSL(30°, 26.7%, 94.1%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #ECF0F4, which creates strong contrast. Its triadic palette includes #ECF4F0 and #F0ECF4. The name comes from isabelline (French).
- HEX: #F4F0EC
- RGB: 244, 240, 236
- HSL: 30°, 26.7%, 94.1%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #ECF0F4
- Triadic colors: #ECF4F0, #F0ECF4
- The name comes from isabelline (French).
Live Components
Color Palettes
Isabelline #F4F0EC 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
Isabelline #F4F0EC pairs with #ECF0F4 as its complementary color, and #ECF4F0 and #F0ECF4 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#F1F1EC
#F0F0EC
#F5EFEF
#F1F1F1
Frequently Asked Questions
Name, History & Etymology
History
The term 'isabelline' is said to derive from Isabella I of Castile (1451-1504) or Isabella Clara Eugenia (1567-1633), daughter of Philip II of Spain. The more popular, though likely apocryphal, story attributes the color to Isabella I of Castile, who allegedly vowed not to change her undergarments until the Moors were expelled from Granada (which took eight months). This would have resulted in a dingy, yellowish-brown color. Another theory links it to Isabella Clara Eugenia, who supposedly made a similar vow during the Siege of Ostend (1601-1604), which lasted over three years. While the exact origin is debated and likely a folk etymology, the color itself has been recognized and named 'isabelline' since at least the late 16th century, primarily in zoology to describe the plumage of birds or fur of animals.
First Recorded Use
1598
Cultural Associations
The color is often associated with natural tones, particularly in ornithology and mammology to describe the specific pale yellowish-brown or sandy coloration of various species (e.g., Isabelline Shrike, Isabelline Wheatear). It evokes a sense of natural earthiness or faded elegance. Due to its historical association, whether true or not, it carries a subtle hint of endurance or perhaps even a touch of the unkempt, depending on the interpretation of its origin story.
Code Snippets
/* Background */
.element {
background-color: #F4F0EC;
}
/* Text */
.element {
color: #F4F0EC;
}
/* Border */
.element {
border: 1px solid #F4F0EC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F4F0EC,
#ECF0F4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F4F0EC,
#ECF0F4
);
}
// SCSS variable
$isabelline: #F4F0EC;
// With RGB channels (useful for rgba() usage)
$isabelline-r: 244;
$isabelline-g: 240;
$isabelline-b: 236;
// Usage
.element {
background-color: $isabelline;
color: rgba($isabelline-r, $isabelline-g, $isabelline-b, 0.8);
}