African Violet
HEX: #B284BE | Modern Palette
Color Specifications
#B284BE
178, 132, 190
287°, 30% ,74%
6.32, 30.53, 0, 25.49
About African Violet
African Violet (#B284BE) is a color with RGB(178, 132, 190) and HSL(287.59°, 30.53%, 74.51%). In design, it fits Pastel styles and is suitable for Text, Print. Its complementary color is #90BE84, which creates strong contrast. Its triadic palette includes #BEB284 and #84BEB2. The name comes from Saintpaulia (Latin).
- HEX: #B284BE
- RGB: 178, 132, 190
- HSL: 287.59°, 30.53%, 74.51%
- Style: Pastel
- Use case: Text, Print
- Complementary color: #90BE84
- Triadic colors: #BEB284, #84BEB2
- The name comes from Saintpaulia (Latin).
Live Components
Color Palettes
African Violet #B284BE 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
African Violet #B284BE pairs with #90BE84 as its complementary color, and #BEB284 and #84BEB2 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The African Violet (Saintpaulia) was first 'discovered' by Baron Walter von Saint Paul-Illaire in 1892 in what was then German East Africa (modern-day Tanzania). He sent seeds to his father in Germany, who then passed them to a botanist, Hermann Wendland, who officially described the plant. It quickly gained popularity as an indoor houseplant due to its relatively easy care and beautiful, long-lasting flowers. The color 'African Violet' (#b284be) specifically refers to the typical purple-pink hue of many popular varieties of the flower.
First Recorded Use
1892
Cultural Associations
African Violets are one of the most popular houseplants worldwide. They are often associated with domesticity, beauty, and a touch of elegance. Their relatively small size and vibrant colors make them a common gift and a staple in many homes. They are also known for their ability to bloom almost continuously under proper conditions, making them a symbol of enduring beauty.
Code Snippets
/* Background */
.element {
background-color: #B284BE;
}
/* Text */
.element {
color: #B284BE;
}
/* Border */
.element {
border: 1px solid #B284BE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B284BE,
#B2D2AA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B284BE,
#B2D2AA
);
}
// SCSS variable
$african-violet: #B284BE;
// With RGB channels (useful for rgba() usage)
$african-violet-r: 178;
$african-violet-g: 132;
$african-violet-b: 190;
// Usage
.element {
background-color: $african-violet;
color: rgba($african-violet-r, $african-violet-g, $african-violet-b, 0.8);
}