Red Violet
HEX: #C71585 | Modern Palette
Color Specifications
#C71585
199, 21, 133
322°, 80% ,43%
0, 89, 33, 22
About Red Violet
Red Violet (#C71585) is a color with RGB(199, 21, 133) and HSL(322.2°, 80.9%, 43.1%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #15C757, which creates strong contrast. Its triadic palette includes #85C715 and #1585C7.
- HEX: #C71585
- RGB: 199, 21, 133
- HSL: 322.2°, 80.9%, 43.1%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #15C757
- Triadic colors: #85C715, #1585C7
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 #C71585 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #C71585;
}
/* Text */
.element {
color: #C71585;
}
/* Border */
.element {
border: 1px solid #C71585;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C71585,
#15C757
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C71585,
#15C757
);
}
// SCSS variable
$red-violet: #C71585;
// With RGB channels (useful for rgba() usage)
$red-violet-r: 199;
$red-violet-g: 21;
$red-violet-b: 133;
// Usage
.element {
background-color: $red-violet;
color: rgba($red-violet-r, $red-violet-g, $red-violet-b, 0.8);
}