Scarlet

HEX: #FF2400 | Modern Palette

On White
3.82:1
FAIL
On Black
5.50:1
PASS

Color Specifications

HEX
#FF2400
RGB
255, 36, 0
HSL
8°, 100% ,50%
CMYK
0, 86, 100, 0

About Scarlet

Scarlet (#FF2400) is a color with RGB(255, 36, 0) and HSL(8.5°, 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 #00DBFF, which creates strong contrast. Its triadic palette includes #00FF24 and #2400FF. The name comes from escarlate (Old French).

  • HEX: #FF2400
  • RGB: 255, 36, 0
  • HSL: 8.5°, 100%, 50%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #00DBFF
  • Triadic colors: #00FF24, #2400FF
  • The name comes from escarlate (Old French).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Scarlet #FF2400 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

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

Scarlet #FF2400 pairs with #00DBFF as its complementary color, and #00FF24 and #2400FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

SCARLET
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

SCARLET
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

SCARLET
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

SCARLET
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

SCARLET
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

SCARLET

Shades & Tints

The shade and tint range for Scarlet #FF2400 moves from dark #1A0400 tones through the base color to lighter #FFE9E6 tones, making it useful for depth, hierarchy, and background variation.

SCARLET

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #969600
Protanopia #63630E
Tritanopia #FF2121
Achromatopsia #838383

Frequently Asked Questions

Scarlet (#FF2400) is a color with RGB(255, 36, 0) and HSL(8.5°, 100%, 50%).

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

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

#FF2400 is commonly associated with Energetic, Bold.

The name Scarlet is linked to escarlate from Old French, meaning a rich, bright red cloth.

Name, History & Etymology

Origin Word escarlate
Meaning a rich, bright red cloth
Language Old French
First Recorded Use Middle Ages

History

The word 'scarlet' originally referred to a type of fine, expensive wool cloth, often dyed a brilliant red, rather than the color itself. This cloth was highly prized and imported from the Middle East. Over time, the word shifted to describe the specific vibrant red color associated with this fabric. The etymology traces back through Old French 'escarlate', Medieval Latin 'scarlata', and ultimately to Persian 'saqirlat' or Arabic 'siqillat', referring to a rich fabric.

First Recorded Use

Late 13th century

Cultural Associations

Symbolism: Scarlet is often associated with passion, love, anger, courage, and sacrifice. It can also represent sin, lust, and danger. Religion: In Christianity, scarlet is sometimes linked to the Whore of Babylon in the Book of Revelation, symbolizing sin and luxury. However, it also appears in priestly vestments. Literature: Nathaniel Hawthorne's 'The Scarlet Letter' famously uses the color to symbolize adultery and public shame. Heraldry: In heraldry, scarlet (or gules) signifies magnanimity and military strength. Academia: Scarlet is a common color for academic regalia, particularly for doctorates, symbolizing the highest level of achievement. Military: Historically, scarlet uniforms were common in the British Army (e.g., 'redcoats'), making soldiers highly visible but also projecting power and intimidation.

Similar Named Colors

Ferrari Red #FF2800 ΔE 0.39
Red (RYB) #FE2712 ΔE 1.56
Candy Apple Red #FF0800 ΔE 1.68
Red #FF0000 ΔE 1.95

Code Snippets

/* Background */
.element {
    background-color: #FF2400;
}

/* Text */
.element {
    color: #FF2400;
}

/* Border */
.element {
    border: 1px solid #FF2400;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF2400,
        #00DBFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF2400,
        #00DBFF
    );
}

// SCSS variable
$scarlet: #FF2400;

// With RGB channels (useful for rgba() usage)
$scarlet-r: 255;
$scarlet-g: 36;
$scarlet-b: 0;

// Usage
.element {
    background-color: $scarlet;
    color: rgba($scarlet-r, $scarlet-g, $scarlet-b, 0.8);
}