Dark Byzantium
HEX: #5D3954 | Modern Palette
Color Specifications
#5D3954
93, 57, 84
315°, 38% ,36%
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
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 #5D3954 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}