Shampoo

HEX: #FFCFF1 | Modern Palette

On White
1.36:1
FAIL
On Black
15.45:1
PASS

Color Specifications

HEX
#FFCFF1
RGB
255, 207, 241
HSL
317°, 18% ,100%
CMYK
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

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

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #DEDEF0
Protanopia #D5D5F1
Tritanopia #FBD4D4
Achromatopsia #DDDDDD

Frequently Asked Questions

Shampoo (#FFCFF1) is a color with RGB(255, 207, 241) and HSL(317.5°, 18.82%, 100%).

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

#FFCFF1 is suitable for Text, Background, Print and works well with Pastel, Warm styles.

The name Shampoo is linked to chāmpo from Hindi, meaning to press, to knead, to massage.

Name, History & Etymology

Origin Word chāmpo
Meaning to press, to knead, to massage
Language Hindi
First Recorded Use 18th Century

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.

Similar Named Colors

Classic Rose #FBCCE7 ΔE 2.18
Pink Lace #FFDDF4 ΔE 4.82
Cotton Candy #FFBCD9 ΔE 5.78
Light Hot Pink #FFB3DE ΔE 7.01

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);
}