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