Vivid Burgundy
HEX: #9F1D35 | Modern Palette
Color Specifications
#9F1D35
159, 29, 53
348°, 81% ,62%
0, 81.76, 66.67, 37.65
About Vivid Burgundy
Vivid Burgundy (#9F1D35) is a color with RGB(159, 29, 53) and HSL(348.92°, 81.76%, 62.35%). 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 #1D9F87, which creates strong contrast. Its triadic palette includes #359F1D and #1D359F.
- HEX: #9F1D35
- RGB: 159, 29, 53
- HSL: 348.92°, 81.76%, 62.35%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #1D9F87
- Triadic colors: #359F1D, #1D359F
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 #9F1D35 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #9F1D35;
}
/* Text */
.element {
color: #9F1D35;
}
/* Border */
.element {
border: 1px solid #9F1D35;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9F1D35,
#50EDD0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9F1D35,
#50EDD0
);
}
// SCSS variable
$vivid-burgundy: #9F1D35;
// With RGB channels (useful for rgba() usage)
$vivid-burgundy-r: 159;
$vivid-burgundy-g: 29;
$vivid-burgundy-b: 53;
// Usage
.element {
background-color: $vivid-burgundy;
color: rgba($vivid-burgundy-r, $vivid-burgundy-g, $vivid-burgundy-b, 0.8);
}