Electric Crimson

HEX: #FF003F | Modern Palette

On White
3.94:1
FAIL
On Black
5.32:1
PASS

Color Specifications

HEX
#FF003F
RGB
255, 0, 63
HSL
345°, 100% ,50%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #FF003F from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #93932E
Protanopia #5D5D42
Tritanopia #FE1212
Achromatopsia #808080

Frequently Asked Questions

Electric Crimson (#FF003F) is a color with RGB(255, 0, 63) and HSL(345.2°, 100%, 50%).

#FF003F pairs strongly with #00FFC0 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF003F is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#FF003F is commonly associated with Energetic, Bold.

The name Electric Crimson is linked to Electric Crimson from English (descriptive), meaning A vivid, intense shade of red with a hint of pink or magenta, evoking the brightness and energy of electricity..

Name, History & Etymology

Origin Word Electric Crimson
Meaning A vivid, intense shade of red with a hint of pink or magenta, evoking the brightness and energy of electricity.
Language English (descriptive)
First Recorded Use Late 20th Century - Early 21st Century

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.

Similar Named Colors

Carmine #FF0040 ΔE 0.24
American Rose #FF033E ΔE 0.32
Carmine Red #FF0038 ΔE 1.67
Tractor Red #FD0E35 ΔE 2.59

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);
}