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
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
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
format | code |
---|---|
hex | #e0b0ff |
rgb | rgb(224,176,255) |
hsl | hsl(277,100%,85%) |
cmyk | cmyk(13, 31, 0, 0) |
hsv | hsv(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.
Triadic scheme of the color mauve
The triadic scheme is obtained from 3 colors equally spaced from each other within the color wheel
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.
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.
Tints of the color mauve
Tints are obtained from the base color mauve up to reaching white, finding in between shades of pastel colors.
Shades of the color mauve
These shades are obtained from the base color mauve up to reaching black.
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.
Contrast ratio test of the color mauve as a background
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 ;}