Crimson
HEX: #DC143C | Modern Palette
Color Specifications
#DC143C
220, 20, 60
348°, 83% ,47%
0, 91, 73, 14
About Crimson
Crimson (#DC143C) is a color with RGB(220, 20, 60) and HSL(348°, 83.3%, 47.1%). 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 #14DCB4, which creates strong contrast. Its triadic palette includes #3CDC14 and #143CDC. The name comes from cremesin (Old Spanish).
- HEX: #DC143C
- RGB: 220, 20, 60
- HSL: 348°, 83.3%, 47.1%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #14DCB4
- Triadic colors: #3CDC14, #143CDC
- The name comes from cremesin (Old Spanish).
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 #DC143C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'crimson' traces its roots back to the Old Spanish 'cremesin', which itself came from the Arabic 'qirmizi'. This Arabic term referred to the kermes insect (Kermes vermilio), from which a rich red dye was extracted. This dye was highly prized and traded across the Mediterranean. The word evolved through Old French ('cramoisin') and Middle English ('crimosin' or 'cremesin') before settling into its modern form. Historically, crimson was a color associated with royalty, power, and religious significance due to the expense and rarity of the kermes dye.
First Recorded Use
14th century
Cultural Associations
Crimson is a color with deep cultural resonance. In Western cultures, it is often associated with passion, love, anger, and courage. It is a prominent color in many national flags and heraldry, symbolizing sacrifice or strength. In religious contexts, particularly Christianity, crimson can represent the blood of Christ or martyrdom. In some Eastern cultures, it may also symbolize good fortune or celebration, though red shades can have varying specific meanings. It is also a common color in academic regalia, often signifying divinity or law.
Code Snippets
/* Background */
.element {
background-color: #DC143C;
}
/* Text */
.element {
color: #DC143C;
}
/* Border */
.element {
border: 1px solid #DC143C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DC143C,
#14DCB4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DC143C,
#14DCB4
);
}
// SCSS variable
$crimson: #DC143C;
// With RGB channels (useful for rgba() usage)
$crimson-r: 220;
$crimson-g: 20;
$crimson-b: 60;
// Usage
.element {
background-color: $crimson;
color: rgba($crimson-r, $crimson-g, $crimson-b, 0.8);
}