Lavender Rose

HEX: #FBA0E3 | Modern Palette

On White
1.87:1
FAIL
On Black
11.24:1
PASS

Color Specifications

HEX
#FBA0E3
RGB
251, 160, 227
HSL
315°, 91% ,80%
CMYK
0, 36, 10, 2

About Lavender Rose

Lavender Rose (#FBA0E3) is a color with RGB(251, 160, 227) and HSL(315.8°, 91.9%, 80.6%). 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 #A0FBB8, which creates strong contrast. Its triadic palette includes #E3FBA0 and #A0E3FB.

  • HEX: #FBA0E3
  • RGB: 251, 160, 227
  • HSL: 315.8°, 91.9%, 80.6%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #A0FBB8
  • Triadic colors: #E3FBA0, #A0E3FB

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #C0C0E1
Protanopia #ADADE3
Tritanopia #F5AAAA
Achromatopsia #BEBEBE

Frequently Asked Questions

Lavender Rose (#FBA0E3) is a color with RGB(251, 160, 227) and HSL(315.8°, 91.9%, 80.6%).

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

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

#FBA0E3 is commonly associated with Playful.

Similar Named Colors

Light Orchid #E6A8D7 ΔE 5.04
Pale Magenta-pink #FF99CC ΔE 5.15
Plum #DDA0DD ΔE 5.41
Light Hot Pink #FFB3DE ΔE 5.93

Code Snippets

/* Background */
.element {
    background-color: #FBA0E3;
}

/* Text */
.element {
    color: #FBA0E3;
}

/* Border */
.element {
    border: 1px solid #FBA0E3;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FBA0E3,
        #A0FBB8
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FBA0E3,
        #A0FBB8
    );
}

// SCSS variable
$lavender-rose: #FBA0E3;

// With RGB channels (useful for rgba() usage)
$lavender-rose-r: 251;
$lavender-rose-g: 160;
$lavender-rose-b: 227;

// Usage
.element {
    background-color: $lavender-rose;
    color: rgba($lavender-rose-r, $lavender-rose-g, $lavender-rose-b, 0.8);
}