Vanilla
HEX: #F3E5AB | Modern Palette
Color Specifications
#F3E5AB
243, 229, 171
48°, 75% ,81%
0, 6, 30, 5
About Vanilla
Vanilla (#F3E5AB) is a color with RGB(243, 229, 171) and HSL(48.3°, 75%, 81.2%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #ABB9F3, which creates strong contrast. Its triadic palette includes #ABF3E5 and #E5ABF3. The name comes from vainilla (Spanish).
- HEX: #F3E5AB
- RGB: 243, 229, 171
- HSL: 48.3°, 75%, 81.2%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #ABB9F3
- Triadic colors: #ABF3E5, #E5ABF3
- The name comes from vainilla (Spanish).
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 #F3E5AB from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E9E9AB
#E7E7AB
#F9DFDF
#E5E5E5
Frequently Asked Questions
Name, History & Etymology
History
Vanilla originates from the fruit of the vanilla orchid, native to Mexico. The Totonac people of Mexico were among the first to cultivate vanilla and use it to flavor chocolate. When the Spanish conquistadors arrived, they discovered vanilla and brought it back to Europe. For centuries, Mexico remained the primary producer of vanilla. However, in the 19th century, methods for hand-pollinating the vanilla orchid were developed, allowing its cultivation to spread to other tropical regions, particularly Madagascar and Réunion (then known as Île Bourbon). Today, Madagascar is the world's largest producer of vanilla.
First Recorded Use
The word 'vanilla' entered English around the 1660s, derived from the Spanish 'vainilla'.
Cultural Associations
Vanilla is one of the most popular and widely used flavorings in the world, found in everything from desserts and beverages to perfumes and candles. Its scent is often associated with warmth, comfort, and sweetness. The term 'vanilla' has also evolved in English to describe something plain, conventional, or lacking in excitement, likely due to its widespread and often understated use as a base flavor.
Code Snippets
/* Background */
.element {
background-color: #F3E5AB;
}
/* Text */
.element {
color: #F3E5AB;
}
/* Border */
.element {
border: 1px solid #F3E5AB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F3E5AB,
#ABB9F3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F3E5AB,
#ABB9F3
);
}
// SCSS variable
$vanilla: #F3E5AB;
// With RGB channels (useful for rgba() usage)
$vanilla-r: 243;
$vanilla-g: 229;
$vanilla-b: 171;
// Usage
.element {
background-color: $vanilla;
color: rgba($vanilla-r, $vanilla-g, $vanilla-b, 0.8);
}