Baby Powder

HEX: #FEFEFA | Modern Palette

On White
1.01:1
FAIL
On Black
20.77:1
PASS

Color Specifications

HEX
#FEFEFA
RGB
254, 254, 250
HSL
60°, 1% ,99%
CMYK
0, 0, 1.57, 0.39

About Baby Powder

Baby Powder (#FEFEFA) is a color with RGB(254, 254, 250) and HSL(60°, 1.57%, 99.61%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Pastel styles and is suitable for Text, Background, Print. Its complementary color is #FAFAFE, which creates strong contrast. Its triadic palette includes #FAFEFE and #FEFAFE. The name comes from Baby Powder (English).

  • HEX: #FEFEFA
  • RGB: 254, 254, 250
  • HSL: 60°, 1.57%, 99.61%
  • Mood: Minimal
  • Style: Monochrome, Pastel
  • Use case: Text, Background, Print
  • Complementary color: #FAFAFE
  • Triadic colors: #FAFEFE, #FEFAFE
  • The name comes from Baby Powder (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 #FEFEFA from deepest shade to lightest tint.

Color Characteristics

Accessibility Simulation

Deuteranopia #FEFEFA
Protanopia #FEFEFA
Tritanopia #FFFDFD
Achromatopsia #FEFEFE

Frequently Asked Questions

Baby Powder (#FEFEFA) is a color with RGB(254, 254, 250) and HSL(60°, 1.57%, 99.61%).

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

#FEFEFA is suitable for Text, Background, Print and works well with Monochrome, Pastel styles.

#FEFEFA is commonly associated with Minimal.

The name Baby Powder is linked to Baby Powder from English, meaning A scented talcum powder, often containing cornstarch, used for babies to prevent diaper rash and chafing..

Name, History & Etymology

Origin Word Baby Powder
Meaning A scented talcum powder, often containing cornstarch, used for babies to prevent diaper rash and chafing.
Language English
First Recorded Use Late 19th Century

History

The use of powders to absorb moisture and reduce friction on skin has ancient roots, with various natural substances like ground herbs and starches being used. In the late 19th century, talcum powder became popular due to its softness and absorbent properties. Johnson & Johnson's Baby Powder, launched in 1893, is often credited with popularizing the term and product globally. Early formulations primarily used talc. Over time, concerns about talc (specifically asbestos contamination in some talc deposits) led to the development of cornstarch-based alternatives. The product has evolved to include various scents and formulations, but its core purpose remains the same.

First Recorded Use

The concept of using powder for infant hygiene dates back centuries, but the commercial product 'Baby Powder' as we know it, particularly with talc, gained prominence in the late 19th century. Johnson & Johnson introduced their baby powder in 1893.

Cultural Associations

Baby powder is deeply ingrained in Western culture as a symbol of infant care and cleanliness. Its distinctive scent is often associated with babies and nurseries. It has also found uses beyond babies, such as a dry shampoo, to prevent chafing in adults, or even in some beauty routines. However, in recent decades, there have been significant cultural shifts and controversies surrounding talc-based baby powder due to lawsuits alleging links to ovarian cancer and mesothelioma, leading many consumers and manufacturers to switch to cornstarch-based alternatives or avoid the product altogether. This has led to a decline in its widespread use and a re-evaluation of its safety.

Similar Named Colors

White #FFFFFF ΔE 2.09
White Smoke #F5F5F5 ΔE 2.72
Floral White #FFFAF0 ΔE 3.23
Isabelline #F4F0EC ΔE 3.35

Code Snippets

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

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

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

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

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

// SCSS variable
$baby-powder: #FEFEFA;

// With RGB channels (useful for rgba() usage)
$baby-powder-r: 254;
$baby-powder-g: 254;
$baby-powder-b: 250;

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