Vanilla

HEX: #F3E5AB | Modern Palette

On White
1.26:1
FAIL
On Black
16.61:1
PASS

Color Specifications

HEX
#F3E5AB
RGB
243, 229, 171
HSL
48°, 75% ,81%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #E9E9AB
Protanopia #E7E7AB
Tritanopia #F9DFDF
Achromatopsia #E5E5E5

Frequently Asked Questions

Vanilla (#F3E5AB) is a color with RGB(243, 229, 171) and HSL(48.3°, 75%, 81.2%).

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

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

#F3E5AB is commonly associated with Playful.

The name Vanilla is linked to vainilla from Spanish, meaning little pod.

Name, History & Etymology

Origin Word vainilla
Meaning little pod
Language Spanish
First Recorded Use 17th Century

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.

Similar Named Colors

Pale Goldenrod #EEE8AA ΔE 2.66
Banana Mania #FAE7B5 ΔE 2.80
Blond #FAF0BE ΔE 3.14
Lemon Meringue #F6EABE ΔE 3.50

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);
}