Baby Powder
HEX: #FEFEFA | Modern Palette
Color Specifications
#FEFEFA
254, 254, 250
60°, 1% ,99%
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
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 #FEFEFA from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#FEFEFA
#FEFEFA
#FFFDFD
#FEFEFE
Frequently Asked Questions
Name, History & Etymology
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.
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);
}