HTML color codes for mauve - hexadecimal + RGB

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

#E0B0FF

códigos del color mauve

Complementary color of mauve:

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

#cfffb0

Monochromatic scheme of the color mauve

#734a91
#9166af
#b083cf
#d0a1ef
#e5bbff
#eed2ff
#f7e8ff
#ffffff

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

HTML and CSS codes for the color mauve

formatcode
hex#e0b0ff
rgbrgb(224,176,255)
hslhsl(277,100%,85%)
cmykcmyk(13, 31, 0, 0)
hsvhsv(277, 31%, 100%)

What is the mauve color in RGB format?

The mauve color in RGB format is composed of (224 in the red channel), (176 in the green channel), and (255 in the blue channel).

What is the mauve color in CMYK format?

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

What is the composition of the mauve color in HSL?

It is composed of (277°) hue, (100%) saturation, and (85%) lightness.

What is the mauve color in HSV format?

The mauve color in HSV format is composed of (277°) hue, (31%) saturation, and (100%) value.

Analogous scheme of the color mauve

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

#e2b3ff
#ffb3f6
#bbb3ff

Triadic scheme of the color mauve

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

#e0b0ff
#ffe0b0
#b0ffe0

Tetradic scheme of the color mauve

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

#e0b0ff
#ffb8b0
#cfffb0
#b0f6ff

Split complementary scheme of the color mauve

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

#e0b0ff
#ffb0bf
#b0ffc0

Tints of the color mauve

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

#e0b0ff
#e6c0ff
#ecd0ff
#f3dfff
#f9efff
#ffffff

Shades of the color mauve

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

#e0b0ff
#b38dcc
#866a99
#5a4666
#2d2333
#000000

Check the contrast of the color mauve.

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

Change the text color.
Contrast ratio: 1.78

Contrast ratio test of the color mauve as a background

Change the background color
Contrast ratio: 8.79

Contrast ratio test of the color mauve as text.

How to implement the color mauve in HTML and CSS

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

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

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

To set the text color mauve in HTML - CSS.

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

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