Vivid Burgundy

HEX: #9F1D35 | Modern Palette

On White
7.77:1
PASS
On Black
2.70:1
FAIL

Color Specifications

HEX
#9F1D35
RGB
159, 29, 53
HSL
348°, 81% ,62%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #5D5D2F
Protanopia #3E3E36
Tritanopia #9E2121
Achromatopsia #525252

Frequently Asked Questions

Vivid Burgundy (#9F1D35) is a color with RGB(159, 29, 53) and HSL(348.92°, 81.76%, 62.35%).

#9F1D35 pairs strongly with #1D9F87 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9F1D35 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#9F1D35 is commonly associated with Energetic, Bold.

Similar Named Colors

Japanese Carmine #9D2933 ΔE 2.62
Deep Carmine #A9203E ΔE 2.66
Big Dip O’ruby #9C2542 ΔE 3.94
French Wine #AC1E44 ΔE 4.27

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);
}