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
Crimson Red #990000 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Crimson Red #990000 pairs with #009999 as its complementary color, and #009900 and #000099 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Shades & Tints
The shade and tint range for Crimson Red #990000 moves from dark #1A0000 tones through the base color to lighter #FFE6E6 tones, making it useful for depth, hierarchy, and background variation.
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);
}