Lavender Pink

HEX: #FBAED2 | Modern Palette

On White
1.74:1
FAIL
On Black
12.09:1
PASS

Color Specifications

HEX
#FBAED2
RGB
251, 174, 210
HSL
331°, 90% ,83%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #C8C8D0
Protanopia #B8B8D2
Tritanopia #F8B3B3
Achromatopsia #C4C4C4

Frequently Asked Questions

Lavender Pink (#FBAED2) is a color with RGB(251, 174, 210) and HSL(331.9°, 90.6%, 83.3%).

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

#FBAED2 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FBAED2 is commonly associated with Playful.

Similar Named Colors

Light Hot Pink #FFB3DE ΔE 2.38
Carnation Pink #FFA6C9 ΔE 2.58
Nadeshiko Pink #F6ADC6 ΔE 3.08
Cotton Candy #FFBCD9 ΔE 3.39

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