Lavender Pink
HEX: #FBAED2 | Modern Palette
Color Specifications
#FBAED2
251, 174, 210
331°, 90% ,83%
0, 31, 16, 2
About Lavender Pink
Lavender Pink (#FBAED2) is a color with RGB(251, 174, 210) and HSL(331.9°, 90.6%, 83.3%). 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 #AEFBD7, which creates strong contrast. Its triadic palette includes #D2FBAE and #AED2FB.
- HEX: #FBAED2
- RGB: 251, 174, 210
- HSL: 331.9°, 90.6%, 83.3%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #AEFBD7
- Triadic colors: #D2FBAE, #AED2FB
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 #FBAED2 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #FBAED2;
}
/* Text */
.element {
color: #FBAED2;
}
/* Border */
.element {
border: 1px solid #FBAED2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FBAED2,
#AEFBD7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FBAED2,
#AEFBD7
);
}
// SCSS variable
$lavender-pink: #FBAED2;
// With RGB channels (useful for rgba() usage)
$lavender-pink-r: 251;
$lavender-pink-g: 174;
$lavender-pink-b: 210;
// Usage
.element {
background-color: $lavender-pink;
color: rgba($lavender-pink-r, $lavender-pink-g, $lavender-pink-b, 0.8);
}