Pastel Pink
HEX: #FFD1DC | Modern Palette
Color Specifications
#FFD1DC
255, 209, 220
345°, 100% ,91%
0, 18, 14, 0
About Pastel Pink
Pastel Pink (#FFD1DC) is a color with RGB(255, 209, 220) and HSL(345.7°, 100%, 91%). 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 #D1FFF4, which creates strong contrast. Its triadic palette includes #DCFFD1 and #D1DCFF.
- HEX: #FFD1DC
- RGB: 255, 209, 220
- HSL: 345.7°, 100%, 91%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #D1FFF4
- Triadic colors: #DCFFD1, #D1DCFF
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 #FFD1DC from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FFD1DC;
}
/* Text */
.element {
color: #FFD1DC;
}
/* Border */
.element {
border: 1px solid #FFD1DC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFD1DC,
#D1FFF4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFD1DC,
#D1FFF4
);
}
// SCSS variable
$pastel-pink: #FFD1DC;
// With RGB channels (useful for rgba() usage)
$pastel-pink-r: 255;
$pastel-pink-g: 209;
$pastel-pink-b: 220;
// Usage
.element {
background-color: $pastel-pink;
color: rgba($pastel-pink-r, $pastel-pink-g, $pastel-pink-b, 0.8);
}