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