Shampoo
HEX: #FFCFF1 | Modern Palette
Color Specifications
#FFCFF1
255, 207, 241
317°, 18% ,100%
0, 18.82, 5.49, 0
About Shampoo
Shampoo (#FFCFF1) is a color with RGB(255, 207, 241) and HSL(317.5°, 18.82%, 100%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #CFFFDD, which creates strong contrast. Its triadic palette includes #F1FFCF and #CFF1FF. The name comes from chāmpo (Hindi).
- HEX: #FFCFF1
- RGB: 255, 207, 241
- HSL: 317.5°, 18.82%, 100%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #CFFFDD
- Triadic colors: #F1FFCF, #CFF1FF
- The name comes from chāmpo (Hindi).
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 #FFCFF1 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#DEDEF0
#D5D5F1
#FBD4D4
#DDDDDD
Frequently Asked Questions
Name, History & Etymology
History
The practice of head massage and hair oiling has ancient roots in India. British colonial traders and travelers in India adopted the practice and the word 'chāmpo'. In England, the term evolved to mean a hair treatment involving massage. By the 19th century, soap-based hair washes became more common, and the word 'shampoo' began to refer specifically to these cleaning products. Early shampoos were often simple soaps or mixtures of soap and herbs. The first commercial liquid shampoo was introduced in the early 20th century, and formulations have become increasingly sophisticated since then, with various ingredients for different hair types and concerns.
First Recorded Use
The word 'shampoo' entered the English language from Anglo-Indian around 1762. Initially, it referred to a head massage, not a specific cleaning agent.
Cultural Associations
In India, the practice of 'chāmpo' was often part of a broader Ayurvedic tradition, focusing on health and well-being through massage and natural ingredients. The transition of 'shampoo' from a massage to a cleaning product reflects a shift in cultural practices and the industrialization of personal care. Today, shampoo is a ubiquitous global product, with a vast market for specialized formulations.
Code Snippets
/* Background */
.element {
background-color: #FFCFF1;
}
/* Text */
.element {
color: #FFCFF1;
}
/* Border */
.element {
border: 1px solid #FFCFF1;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFCFF1,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFCFF1,
#FFFFFF
);
}
// SCSS variable
$shampoo: #FFCFF1;
// With RGB channels (useful for rgba() usage)
$shampoo-r: 255;
$shampoo-g: 207;
$shampoo-b: 241;
// Usage
.element {
background-color: $shampoo;
color: rgba($shampoo-r, $shampoo-g, $shampoo-b, 0.8);
}