Dark Scarlet
HEX: #560319 | Modern Palette
Color Specifications
#560319
86, 3, 25
344°, 96% ,33%
0, 96.51, 70.93, 66.27
About Dark Scarlet
Dark Scarlet (#560319) is a color with RGB(86, 3, 25) and HSL(344.1°, 96.51%, 33.73%). It is commonly associated with Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #035640, which creates strong contrast. Its triadic palette includes #195603 and #031956. The name comes from Dark Scarlet (English).
- HEX: #560319
- RGB: 86, 3, 25
- HSL: 344.1°, 96.51%, 33.73%
- Mood: Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #035640
- Triadic colors: #195603, #031956
- The name comes from Dark Scarlet (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 #560319 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Scarlet itself has a long history, dating back to ancient times, referring to a fine woolen cloth dyed with a brilliant red. The color 'scarlet' became associated with this dye. As dyes and pigments became more varied, and the need for more precise color descriptions grew, modifiers like 'dark' were naturally applied. 'Dark Scarlet' distinguishes it from brighter, more orange-red scarlets. It has been used in fashion, art, and heraldry to denote a rich, serious, or luxurious red.
First Recorded Use
While 'dark' and 'scarlet' existed independently much earlier, the specific compound 'dark scarlet' as a distinct color name likely emerged as color vocabulary became more nuanced, possibly in textile or dye industries. Exact first documented use is difficult to pinpoint without extensive historical linguistic research, but the concept would have been understood earlier.
Cultural Associations
Dark scarlet often evokes feelings of richness, luxury, power, and sometimes a more subdued passion compared to a vibrant scarlet. It can be associated with royalty (though often crimson or burgundy are more common), deep love, or a sense of drama and intensity. In some contexts, it might suggest a more mature or sophisticated aesthetic than a brighter red. It's a color that commands attention without being overtly flashy.
Code Snippets
/* Background */
.element {
background-color: #560319;
}
/* Text */
.element {
color: #560319;
}
/* Border */
.element {
border: 1px solid #560319;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#560319,
#03A97D
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#560319,
#03A97D
);
}
// SCSS variable
$dark-scarlet: #560319;
// With RGB channels (useful for rgba() usage)
$dark-scarlet-r: 86;
$dark-scarlet-g: 3;
$dark-scarlet-b: 25;
// Usage
.element {
background-color: $dark-scarlet;
color: rgba($dark-scarlet-r, $dark-scarlet-g, $dark-scarlet-b, 0.8);
}