Floral White
HEX: #FFFAF0 | Modern Palette
Color Specifications
#FFFAF0
255, 250, 240
40°, 100% ,97%
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
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 #FFFAF0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}