HTML color codes for teal - hexadecimal + RGB

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

#012e46

códigos del color teal

Complementary color of teal:

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

#461901

Monochromatic scheme of the color teal

#000000
#091219
#0c1d2a
#06283c
#153b54
#345671
#52738f
#7091af

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

HTML and CSS codes for the color teal

formatcode
hex#012e46
rgbrgb(1,46,70)
hslhsl(201,98%,14%)
cmykcmyk(99, 35, 0, 73)
hsvhsv(201, 99%, 28%)

What is the teal color in RGB format?

The teal color in RGB format is composed of (1 in the red channel), (46 in the green channel), and (70 in the blue channel).

What is the teal color in CMYK format?

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

What is the composition of the teal color in HSL?

It is composed of (201°) hue, (98%) saturation, and (14%) lightness.

What is the teal color in HSV format?

The teal color in HSV format is composed of (201°) hue, (99%) saturation, and (28%) value.

Analogous scheme of the color teal

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

#012e47
#010b47
#01473c

Triadic scheme of the color teal

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

#012e46
#46012e
#2e4601

Tetradic scheme of the color teal

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

#012e46
#3b0146
#461901
#0b4601

Split complementary scheme of the color teal

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

#012e46
#270146
#464201

Tints of the color teal

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

#012e46
#34586b
#678290
#99abb5
#ccd5da
#ffffff

Shades of the color teal

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

#012e46
#012538
#011c2a
#00121c
#00090e
#000000

Check the contrast of the color teal.

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

Change the text color.
Contrast ratio: 14.18

Contrast ratio test of the color teal as a background

Change the background color
Contrast ratio: 1.10

Contrast ratio test of the color teal as text.

How to implement the color teal in HTML and CSS

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

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

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

To set the text color teal in HTML - CSS.

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

<p style="color:#012e46;"> Color teal as the text color.</p>
p {
color:#012e46 ;
}