HTML color codes for dark turquoise - hexadecimal + RGB

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

#00ced1

códigos del color dark turquoise

Complementary color of dark turquoise:

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

#d10300

Monochromatic scheme of the color dark turquoise

#006469
#008185
#009fa3
#00bec1
#3bd5d7
#6ce3e5
#90f1f2
#b1ffff

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

HTML and CSS codes for the color dark turquoise

formatcode
hex#00ced1
rgbrgb(0,206,209)
hslhsl(181,100%,41%)
cmykcmyk(100, 2, 0, 19)
hsvhsv(181, 100%, 82%)

What is the dark turquoise color in RGB format?

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

What is the dark turquoise color in CMYK format?

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

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

It is composed of (181°) hue, (100%) saturation, and (41%) lightness.

What is the dark turquoise color in HSV format?

The dark turquoise color in HSV format is composed of (181°) hue, (100%) saturation, and (82%) value.

Analogous scheme of the color dark turquoise

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

#00ced1
#0065d1
#00d16c

Triadic scheme of the color dark turquoise

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

#00ced1
#d100ce
#ced100

Tetradic scheme of the color dark turquoise

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

#00ced1
#6b00d1
#d10300
#65d100

Split complementary scheme of the color dark turquoise

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

#00ced1
#2d00d1
#d18000

Tints of the color dark turquoise

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

#00ced1
#33d8da
#66e2e3
#99ebed
#ccf5f6
#ffffff

Shades of the color dark turquoise

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

#00ced1
#00a5a7
#007c7d
#005254
#00292a
#000000

Check the contrast of the color dark turquoise.

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

Change the text color.
Contrast ratio: 1.95

Contrast ratio test of the color dark turquoise as a background

Change the background color
Contrast ratio: 7.99

Contrast ratio test of the color dark turquoise as text.

How to implement the color dark turquoise in HTML and CSS

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

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

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

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

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

<p style="color:#00ced1;"> Color dark turquoise as the text color.</p>
p {
color:#00ced1 ;
}