CSS Named Color
Copy-ready color values
HEX
#DC143CRGB
rgb(220, 20, 60)HSL
hsl(348, 83%, 47%)HSV
hsv(348, 91%, 86%)CMYK approx.
cmyk(0, 91, 73, 14)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #DC143C | |
| RGB | rgb(220, 20, 60) | |
| HSL | hsl(348, 83%, 47%) | |
| HSV | hsv(348, 91%, 86%) | |
| CMYK approx. | cmyk(0, 91, 73, 14) | |
| CSS keyword | crimson |
Contrast and classification
DarkLightness4.99:1Contrast with white4.21:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#E02C50
White 30%#E75B77
White 70%#F5B9C5
White 90%#FCE8EC
Black 10%#C61236
Black 30%#9A0E2A
Black 70%#420612
Black 90%#160206
Harmony palettes
Complementary
#23EBC3#58F0D1Analogous
#C4144F#DC1937Triadic
#143CDC#3CDC14Split complementary
#4BEFCE#1DC1A0Using Crimson
Crimson works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-crimson: #dc143c;
}
.button-primary {
background: var(--color-crimson);
color: #ffffff;
}
$crimson: #dc143c;
// Tailwind arbitrary value
class="bg-[#dc143c] text-white"