Medium Red Violet
HEX: #BB3385 | Modern Palette
Color Specifications
#BB3385
187, 51, 133
323°, 57% ,46%
0, 73, 29, 27
About Medium Red Violet
Medium Red Violet (#BB3385) is a color with RGB(187, 51, 133) and HSL(323.8°, 57.1%, 46.7%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #33BB69, which creates strong contrast. Its triadic palette includes #85BB33 and #3385BB.
- HEX: #BB3385
- RGB: 187, 51, 133
- HSL: 323.8°, 57.1%, 46.7%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #33BB69
- Triadic colors: #85BB33, #3385BB
Live Components
Color Palettes
Medium Red Violet #BB3385 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
Medium Red Violet #BB3385 pairs with #33BB69 as its complementary color, and #85BB33 and #3385BB 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: #BB3385;
}
/* Text */
.element {
color: #BB3385;
}
/* Border */
.element {
border: 1px solid #BB3385;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BB3385,
#33BB69
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BB3385,
#33BB69
);
}
// SCSS variable
$medium-red-violet: #BB3385;
// With RGB channels (useful for rgba() usage)
$medium-red-violet-r: 187;
$medium-red-violet-g: 51;
$medium-red-violet-b: 133;
// Usage
.element {
background-color: $medium-red-violet;
color: rgba($medium-red-violet-r, $medium-red-violet-g, $medium-red-violet-b, 0.8);
}