Light Crimson

HEX: #F56991 | Modern Palette

On White
2.87:1
FAIL
On Black
7.31:1
PASS

Color Specifications

HEX
#F56991
RGB
245, 105, 145
HSL
342°, 87% ,68%
CMYK
0, 57, 41, 4

About Light Crimson

Light Crimson (#F56991) is a color with RGB(245, 105, 145) and HSL(342.9°, 87.5%, 68.6%). 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 #69F5CD, which creates strong contrast. Its triadic palette includes #91F569 and #6991F5. The name comes from Light Crimson (English).

  • HEX: #F56991
  • RGB: 245, 105, 145
  • HSL: 342.9°, 87.5%, 68.6%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #69F5CD
  • Triadic colors: #91F569, #6991F5
  • The name comes from Light Crimson (English).

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A3A38D
Protanopia #838392
Tritanopia #F36F6F
Achromatopsia #989898

Frequently Asked Questions

Light Crimson (#F56991) is a color with RGB(245, 105, 145) and HSL(342.9°, 87.5%, 68.6%).

#F56991 pairs strongly with #69F5CD as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F56991 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#F56991 is commonly associated with Energetic, Bold.

The name Light Crimson is linked to Light Crimson from English, meaning A lighter shade of crimson, a deep red color..

Name, History & Etymology

Origin Word Light Crimson
Meaning A lighter shade of crimson, a deep red color.
Language English
First Recorded Use Late 20th Century

History

Crimson itself has a long history, deriving from the Kirmiz insect (from Arabic 'qirmiz' meaning 'red dye') which was used to produce a rich red dye. It was a color associated with royalty, power, and luxury for centuries. The addition of 'light' to crimson is a modern descriptor to differentiate various shades within the red spectrum, especially in digital and commercial contexts where precise color communication is essential. The hex code #f56991 is one of many possible 'light crimson' variations.

First Recorded Use

The specific hex code #f56991 and the exact name 'Light Crimson' as a distinct digital color likely emerged with the advent of web colors and digital design tools. While 'light crimson' as a descriptive term could have been used earlier, its standardization as a specific color value is more recent.

Cultural Associations

Crimson, in general, carries strong cultural connotations of passion, love, anger, courage, and sacrifice. Lighter shades of crimson might evoke a softer, more delicate, or more playful version of these emotions, or be seen as more feminine or approachable than a deep, intense crimson. In fashion and design, it can be used to add a touch of warmth and vibrancy without the intensity of a primary red.

Similar Named Colors

Strawberry #FC5A8D ΔE 2.46
French Pink #FD6C9E ΔE 2.79
Brink Pink #FB607F ΔE 4.42
Wild Watermelon #FC6C85 ΔE 4.52

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #F56991,
        #69F5CD
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F56991,
        #69F5CD
    );
}

// SCSS variable
$light-crimson: #F56991;

// With RGB channels (useful for rgba() usage)
$light-crimson-r: 245;
$light-crimson-g: 105;
$light-crimson-b: 145;

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