HTML color codes for crimson - hexadecimal + RGB

Discover all HTML codes for the color crimson - hexadecimal, rgb, hsl, hsv, and cmyk, as well as different combinations, schemes, temperatures, hues, and types of crimson color.

#dc143c

códigos del color crimson

Complementary color of crimson:

The complementary color of a color is the opposite of it on the color wheel (chromatic circle)

#14dcb4

Monochromatic scheme of the color crimson

#610000
#820314
#a50924
#c91034
#e23549
#ee5e66
#f87f83
#ff9ea2

This scheme is based on the color crimson and is composed of different hues, tones, and shades, both dark and light.

HTML and CSS codes for the color crimson

formatcode
hex#dc143c
rgbrgb(220,20,60)
hslhsl(348,84%,48%)
cmykcmyk(0, 91, 73, 14)
hsvhsv(348, 91%, 87%)

What is the crimson color in RGB format?

The crimson color in RGB format is composed of (220 in the red channel), (20 in the green channel), and (60 in the blue channel).

What is the crimson color in CMYK format?

It is composed of (0%) cyan, (91%) magenta, (73%) yellow, and (14%) black / key.

What is the composition of the crimson color in HSL?

It is composed of (348°) hue, (84%) saturation, and (48%) lightness.

What is the crimson color in HSV format?

The crimson color in HSV format is composed of (348°) hue, (91%) saturation, and (87%) value.

Analogous scheme of the color crimson

Analogous colors are obtained from the two closest colors within the color wheel.

#e1143d
#e15114
#e114a4

Triadic scheme of the color crimson

The triadic scheme is obtained from 3 colors equally spaced from each other within the color wheel

#dc143c
#3cdc14
#143cdc

Tetradic scheme of the color crimson

This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.

#dc143c
#a0dc14
#14dcb4
#5014dc

Split complementary scheme of the color crimson

This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.

#dc143c
#dcdc14
#148cdc

Tints of the color crimson

Tints are obtained from the base color crimson up to reaching white, finding in between shades of pastel colors.

#dc143c
#e34363
#ea728a
#f1a1b1
#f8d0d8
#ffffff

Shades of the color crimson

These shades are obtained from the base color crimson up to reaching black.

#dc143c
#b01030
#840c24
#580818
#2c040c
#000000

Check the contrast of the color crimson.

You can now validate the contrast relationship of the color crimson, whether using it as a background color or as a text color.

Change the text color.
Contrast ratio: 4.99

Contrast ratio test of the color crimson as a background

Change the background color
Contrast ratio: 3.13

Contrast ratio test of the color crimson as text.

How to implement the color crimson in HTML and CSS

Here are examples of code to use the crimson on your web page. Remember that you can implement the color in HTML using color codes such as hexadecimal, RGB, or HSL, and also directly with the color name written in English (as long as it is natively supported by HTML).

Background color crimson in HTML - CSS.

To set the background color, you can use inline styles or apply them in a CSS stylesheet

<div style="background:#dc143c;"> Color crimson as the background of a div.</div>
/* Color crimson as the background of the body tag with CSS. */
body {
background: #dc143c;
}

To set the text color crimson in HTML - CSS.

To set the text color, you can use inline styles or apply them in a CSS stylesheet.

<p style="color:#dc143c;"> Color crimson as the text color.</p>
p {
color:#dc143c ;
}