HTML color codes for dark red - hexadecimal + RGB

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

#8b0000

códigos del color dark red

Complementary color of dark red:

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

#008b8b

Monochromatic scheme of the color dark red

#3a0000
#500002
#670002
#7f0001
#9b1c0f
#bc402a
#de5f45
#ff7f62

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

HTML and CSS codes for the color dark red

formatcode
hex#8b0000
rgbrgb(139,0,0)
hslhsl(0,100%,28%)
cmykcmyk(0, 100, 100, 46)
hsvhsv(0, 100%, 55%)

What is the dark red color in RGB format?

The dark red color in RGB format is composed of (139 in the red channel), (0 in the green channel), and (0 in the blue channel).

What is the dark red color in CMYK format?

It is composed of (0%) cyan, (100%) magenta, (100%) yellow, and (46%) black / key.

What is the composition of the dark red color in HSL?

It is composed of (0°) hue, (100%) saturation, and (28%) lightness.

What is the dark red color in HSV format?

The dark red color in HSV format is composed of (0°) hue, (100%) saturation, and (55%) value.

Analogous scheme of the color dark red

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

#8f0000
#8f4700
#8f0047

Triadic scheme of the color dark red

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

#8b0000
#008b00
#00008b

Tetradic scheme of the color dark red

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

#8b0000
#458b00
#008b8b
#45008b

Split complementary scheme of the color dark red

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

#8b0000
#6f8b00
#00388b

Tints of the color dark red

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

#8b0000
#a23333
#b96666
#d19999
#e8cccc
#ffffff

Shades of the color dark red

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

#8b0000
#6f0000
#530000
#380000
#1c0000
#000000

Check the contrast of the color dark red.

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

Change the text color.
Contrast ratio: 10.01

Contrast ratio test of the color dark red as a background

Change the background color
Contrast ratio: 1.56

Contrast ratio test of the color dark red as text.

How to implement the color dark red in HTML and CSS

Here are examples of code to use the dark red 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 dark red in HTML - CSS.

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

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

To set the text color dark red in HTML - CSS.

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

<p style="color:#8b0000;"> Color dark red as the text color.</p>
p {
color:#8b0000 ;
}