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
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 #B284BE from deepest shade to lightest tint.
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);
}