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
Lavender Pink #FBAED2 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Lavender Pink #FBAED2 pairs with #AEFBD7 as its complementary color, and #D2FBAE and #AED2FB in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}