Dark Byzantium

HEX: #5D3954 | Modern Palette

On White
9.64:1
PASS
On Black
2.18:1
FAIL

Color Specifications

HEX
#5D3954
RGB
93, 57, 84
HSL
315°, 38% ,36%
CMYK
0, 38.71, 9.68, 63.53

About Dark Byzantium

Dark Byzantium (#5D3954) is a color with RGB(93, 57, 84) and HSL(315°, 38.71%, 36.47%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #395D42, which creates strong contrast. Its triadic palette includes #545D39 and #39545D. The name comes from Dark Byzantium (English).

  • HEX: #5D3954
  • RGB: 93, 57, 84
  • HSL: 315°, 38.71%, 36.47%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #395D42
  • Triadic colors: #545D39, #39545D
  • The name comes from Dark Byzantium (English).

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 #5D3954 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #464653
Protanopia #3E3E54
Tritanopia #5A3D3D
Achromatopsia #454545

Frequently Asked Questions

Dark Byzantium (#5D3954) is a color with RGB(93, 57, 84) and HSL(315°, 38.71%, 36.47%).

#5D3954 pairs strongly with #395D42 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#5D3954 is suitable for Text, Logo, Print and works well with Warm styles.

#5D3954 is commonly associated with Romantic.

The name Dark Byzantium is linked to Dark Byzantium from English, meaning A dark shade of purple, reminiscent of the rich, deep colors often associated with Byzantine art and textiles..

Name, History & Etymology

Origin Word Dark Byzantium
Meaning A dark shade of purple, reminiscent of the rich, deep colors often associated with Byzantine art and textiles.
Language English
First Recorded Use 20th Century

History

The name 'Byzantium' for a color refers to the Byzantine Empire, known for its opulent use of color, especially deep purples and reds, in mosaics, illuminated manuscripts, and imperial robes. Tyrian purple, a very expensive dye, was a symbol of royalty and power in the Byzantine Empire. 'Dark Byzantium' specifically denotes a deeper, more subdued version of the general 'Byzantium' purple. It likely emerged as color naming became more standardized and descriptive in art, fashion, and design contexts.

First Recorded Use

Early 20th century (as a named color, though the concept of dark purple existed much earlier)

Cultural Associations

Purple, in general, has a long history as a color of royalty, wealth, and spirituality, largely due to the rarity and cost of natural purple dyes like Tyrian purple. In the Byzantine Empire, purple was reserved for the emperor and empress, and its use was strictly controlled. 'Dark Byzantium' evokes this historical grandeur and solemnity, suggesting a color that is both luxurious and profound. It can be associated with mystery, sophistication, and ancient power.

Similar Named Colors

Halayà úbe #663854 ΔE 2.70
Japanese Violet #5B3256 ΔE 3.21
English Violet #563C5C ΔE 3.92
Eggplant #614051 ΔE 4.03

Code Snippets

/* Background */
.element {
    background-color: #5D3954;
}

/* Text */
.element {
    color: #5D3954;
}

/* Border */
.element {
    border: 1px solid #5D3954;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #5D3954,
        #39814B
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #5D3954,
        #39814B
    );
}

// SCSS variable
$dark-byzantium: #5D3954;

// With RGB channels (useful for rgba() usage)
$dark-byzantium-r: 93;
$dark-byzantium-g: 57;
$dark-byzantium-b: 84;

// Usage
.element {
    background-color: $dark-byzantium;
    color: rgba($dark-byzantium-r, $dark-byzantium-g, $dark-byzantium-b, 0.8);
}