Light Crimson
HEX: #F56991 | Modern Palette
Color Specifications
#F56991
245, 105, 145
342°, 87% ,68%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}