Crimson Red
HEX: #990000 | Modern Palette
Color Specifications
#990000
153, 0, 0
0°, 100% ,60%
0, 100, 100, 40
About Crimson Red
Crimson Red (#990000) is a color with RGB(153, 0, 0) and HSL(0°, 100%, 60%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #009999, which creates strong contrast. Its triadic palette includes #009900 and #000099. The name comes from Crimson Red (English).
- HEX: #990000
- RGB: 153, 0, 0
- HSL: 0°, 100%, 60%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #009999
- Triadic colors: #009900, #000099
- The name comes from Crimson Red (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 #990000 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'crimson' itself comes from Old Spanish 'cremesin', which in turn derives from Arabic 'qirmiz' (kermes), referring to the insect from which the dye was obtained. This dye was highly prized and expensive, making crimson a color of royalty, power, and luxury for centuries. The addition of 'Red' to 'Crimson' is often for emphasis or clarification, as crimson is a specific shade of red. Historically, crimson dyes were among the most stable and vibrant reds available before synthetic dyes.
First Recorded Use
14th Century (for 'crimson')
Cultural Associations
Royalty and Nobility: Widely used in royal robes, heraldry, and aristocratic attire across Europe. Religion: Associated with the blood of Christ in Christianity, often seen in vestments and religious art. Passion and Love: Like other reds, it symbolizes intense emotions, love, and desire. War and Sacrifice: Due to its blood-like appearance, it can represent war, sacrifice, and courage. Academic Dress: Often used for doctoral robes in certain fields, particularly in the UK and Commonwealth countries. Sports Teams: A popular color for sports teams and university colors, conveying strength and energy.
Code Snippets
/* Background */
.element {
background-color: #990000;
}
/* Text */
.element {
color: #990000;
}
/* Border */
.element {
border: 1px solid #990000;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#990000,
#33FFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#990000,
#33FFFF
);
}
// SCSS variable
$crimson-red: #990000;
// With RGB channels (useful for rgba() usage)
$crimson-red-r: 153;
$crimson-red-g: 0;
$crimson-red-b: 0;
// Usage
.element {
background-color: $crimson-red;
color: rgba($crimson-red-r, $crimson-red-g, $crimson-red-b, 0.8);
}