Floral White

HEX: #FFFAF0 | Modern Palette

On White
1.04:1
FAIL
On Black
20.18:1
PASS

Color Specifications

HEX
#FFFAF0
RGB
255, 250, 240
HSL
40°, 100% ,97%
CMYK
0, 2, 6, 0

About Floral White

Floral White (#FFFAF0) is a color with RGB(255, 250, 240) and HSL(40°, 100%, 97.1%). 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 #F0F5FF, which creates strong contrast. Its triadic palette includes #F0FFFA and #FAF0FF. The name comes from Floral White (English).

  • HEX: #FFFAF0
  • RGB: 255, 250, 240
  • HSL: 40°, 100%, 97.1%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #F0F5FF
  • Triadic colors: #F0FFFA, #FAF0FF
  • The name comes from Floral White (English).

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #FBFBF0
Protanopia #FBFBF0
Tritanopia #FFF9F9
Achromatopsia #FAFAFA

Frequently Asked Questions

Floral White (#FFFAF0) is a color with RGB(255, 250, 240) and HSL(40°, 100%, 97.1%).

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

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

#FFFAF0 is commonly associated with Playful.

The name Floral White is linked to Floral White from English, meaning A color that evokes the appearance of white flowers, often with a very slight warmth or creaminess..

Name, History & Etymology

Origin Word Floral White
Meaning A color that evokes the appearance of white flowers, often with a very slight warmth or creaminess.
Language English
First Recorded Use Late 20th Century

History

The term 'floral white' as a descriptive color has likely been used informally for centuries to describe the delicate white of various flowers (e.g., jasmine, lily, some roses). However, its standardization as a web color is relatively recent. It was included in the X11 color names, which were later adopted for web browsers. It's one of the many 'off-white' colors defined to offer more nuanced choices than a simple 'white' (which is #ffffff). Its slight yellow/red tint (f0 in the blue channel, fa in green, ff in red) gives it a warmer feel than pure white.

First Recorded Use

The specific named color 'Floral White' with the hex code #fffaf0 gained prominence with the advent of web colors and standardized color palettes for digital displays. While the concept of 'floral white' as a descriptive term for a shade of white existed earlier, its formalization as a distinct color name and code is tied to computing.

Cultural Associations

In Western cultures, white is often associated with purity, innocence, weddings, and new beginnings. 'Floral white' specifically might evoke feelings of spring, gardens, elegance, and natural beauty due to its association with flowers. It's a popular choice in interior design for creating soft, inviting spaces, and in fashion for bridal wear or light, airy garments. It's perceived as softer and less stark than pure white.

Similar Named Colors

Old Lace #FDF5E6 ΔE 2.36
Cosmic Latte #FFF8E7 ΔE 2.82
Linen #FAF0E6 ΔE 3.04
Baby Powder #FEFEFA ΔE 3.23

Code Snippets

/* Background */
.element {
    background-color: #FFFAF0;
}

/* Text */
.element {
    color: #FFFAF0;
}

/* Border */
.element {
    border: 1px solid #FFFAF0;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FFFAF0,
        #F0F5FF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFFAF0,
        #F0F5FF
    );
}

// SCSS variable
$floral-white: #FFFAF0;

// With RGB channels (useful for rgba() usage)
$floral-white-r: 255;
$floral-white-g: 250;
$floral-white-b: 240;

// Usage
.element {
    background-color: $floral-white;
    color: rgba($floral-white-r, $floral-white-g, $floral-white-b, 0.8);
}