Lavender Rose
HEX: #FBA0E3 | Modern Palette
Color Specifications
#FBA0E3
251, 160, 227
315°, 91% ,80%
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
Color Palettes
Lavender Rose #FBA0E3 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 Rose #FBA0E3 pairs with #A0FBB8 as its complementary color, and #E3FBA0 and #A0E3FB 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: #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);
}