Electric Crimson
HEX: #FF003F | Modern Palette
Color Specifications
#FF003F
255, 0, 63
345°, 100% ,50%
0, 100, 75, 0
About Electric Crimson
Electric Crimson (#FF003F) is a color with RGB(255, 0, 63) and HSL(345.2°, 100%, 50%). 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 #00FFC0, which creates strong contrast. Its triadic palette includes Harlequin (#3FFF00) and #003FFF. The name comes from Electric Crimson (English (descriptive)).
- HEX: #FF003F
- RGB: 255, 0, 63
- HSL: 345.2°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00FFC0
- Triadic colors: Harlequin (#3FFF00), #003FFF
- The name comes from Electric Crimson (English (descriptive)).
Live Components
Color Palettes
Electric Crimson #FF003F 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
Electric Crimson #FF003F pairs with #00FFC0 as its complementary color, and Harlequin (#3FFF00) and #003FFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Frequently Asked Questions
Name, History & Etymology
History
The term 'electric' when applied to colors generally signifies an extreme vibrancy, often with a slightly artificial or neon quality. 'Crimson' is a deep, rich red, historically associated with royalty, luxury, and passion. The combination 'Electric Crimson' therefore suggests a modern, highly saturated, and energetic take on the traditional crimson. It's a descriptor that likely gained traction as designers and marketers sought more evocative and precise language for the expanding spectrum of available colors, particularly those achievable in digital media or with synthetic dyes.
First Recorded Use
The exact first use is difficult to pinpoint as it's a descriptive color name rather than a formally registered one. Its emergence likely coincides with the rise of digital color palettes and more nuanced color naming in fashion, design, and cosmetics, roughly from the 1990s onwards.
Cultural Associations
This color name often appears in contexts where a bold, attention-grabbing red is desired. It might be found in: - **Fashion:** For statement pieces, activewear, or avant-garde designs. - **Cosmetics:** Especially for lipsticks, nail polishes, or hair dyes aiming for a dramatic effect. - **Graphic Design/Branding:** For brands wanting to convey energy, modernity, or passion with a distinctive edge. - **Pop Culture:** Can be associated with futuristic themes, cyberpunk aesthetics, or vibrant artistic expressions. It carries connotations of excitement, danger, and high energy.
Code Snippets
/* Background */
.element {
background-color: #FF003F;
}
/* Text */
.element {
color: #FF003F;
}
/* Border */
.element {
border: 1px solid #FF003F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF003F,
#00FFC0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF003F,
#00FFC0
);
}
// SCSS variable
$electric-crimson: #FF003F;
// With RGB channels (useful for rgba() usage)
$electric-crimson-r: 255;
$electric-crimson-g: 0;
$electric-crimson-b: 63;
// Usage
.element {
background-color: $electric-crimson;
color: rgba($electric-crimson-r, $electric-crimson-g, $electric-crimson-b, 0.8);
}