Rich Brilliant Lavender
HEX: #F1A7FE | Modern Palette
Color Specifications
#F1A7FE
241, 167, 254
291°, 34% ,99%
5.12, 34.25, 0, 0.39
About Rich Brilliant Lavender
Rich Brilliant Lavender (#F1A7FE) is a color with RGB(241, 167, 254) and HSL(291.03°, 34.25%, 99.61%). In design, it fits Pastel styles and is suitable for Text, Background, Print. Its complementary color is #B4FEA7, which creates strong contrast. Its triadic palette includes #FEF1A7 and #A7FEF1. The name comes from Rich Brilliant Lavender (English).
- HEX: #F1A7FE
- RGB: 241, 167, 254
- HSL: 291.03°, 34.25%, 99.61%
- Style: Pastel
- Use case: Text, Background, Print
- Complementary color: #B4FEA7
- Triadic colors: #FEF1A7, #A7FEF1
- The name comes from Rich Brilliant Lavender (English).
Live Components
Color Palettes
Rich Brilliant Lavender #F1A7FE 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
Rich Brilliant Lavender #F1A7FE pairs with #B4FEA7 as its complementary color, and #FEF1A7 and #A7FEF1 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#C0C0FD
#B1B1FE
#E7B5B5
#C1C1C1
Frequently Asked Questions
Name, History & Etymology
History
This color name is a modern, descriptive English term, rather than having a deep historical etymology. It's characteristic of the expanded and often more poetic or evocative color naming conventions that became prevalent with digital color systems and web design. The 'Rich Brilliant' prefix aims to differentiate it from a standard or muted lavender, emphasizing its vibrancy and depth. 'Lavender' itself has been used as a color name since the late 18th century, referring to the pale purple color of the lavender flower.
First Recorded Use
Likely early 2000s (post-web color naming conventions)
Cultural Associations
The use of 'Rich' and 'Brilliant' suggests a desire to convey luxury, vibrancy, and a certain intensity. Lavender colors, in general, are often associated with femininity, tranquility, grace, and sometimes spirituality. This particular shade, being more vibrant, might also suggest creativity or playfulness. It's a color that stands out and makes a statement.
Code Snippets
/* Background */
.element {
background-color: #F1A7FE;
}
/* Text */
.element {
color: #F1A7FE;
}
/* Border */
.element {
border: 1px solid #F1A7FE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F1A7FE,
#FEFEFE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F1A7FE,
#FEFEFE
);
}
// SCSS variable
$rich-brilliant-lavender: #F1A7FE;
// With RGB channels (useful for rgba() usage)
$rich-brilliant-lavender-r: 241;
$rich-brilliant-lavender-g: 167;
$rich-brilliant-lavender-b: 254;
// Usage
.element {
background-color: $rich-brilliant-lavender;
color: rgba($rich-brilliant-lavender-r, $rich-brilliant-lavender-g, $rich-brilliant-lavender-b, 0.8);
}