HTML color codes for pastel purple - hexadecimal + RGB

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

#a18594

códigos del color pastel purple

Complementary color of pastel purple:

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

#85a192

Monochromatic scheme of the color pastel purple

#3e2734
#59404e
#755b69
#927785
#ae94a3
#c9b4c1
#e4d5df
#fff6ff

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

HTML and CSS codes for the color pastel purple

formatcode
hex#a18594
rgbrgb(161,133,148)
hslhsl(328,13%,58%)
cmykcmyk(0, 18, 9, 37)
hsvhsv(328, 18%, 64%)

What is the pastel purple color in RGB format?

The pastel purple color in RGB format is composed of (161 in the red channel), (133 in the green channel), and (148 in the blue channel).

What is the pastel purple color in CMYK format?

It is composed of (0%) cyan, (18%) magenta, (9%) yellow, and (37%) black / key.

What is the composition of the pastel purple color in HSL?

It is composed of (328°) hue, (13%) saturation, and (58%) lightness.

What is the pastel purple color in HSV format?

The pastel purple color in HSV format is composed of (328°) hue, (18%) saturation, and (64%) value.

Analogous scheme of the color pastel purple

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

#a28695
#a28687
#a186a2

Triadic scheme of the color pastel purple

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

#a18594
#94a185
#8594a1

Tetradic scheme of the color pastel purple

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

#a18594
#a1a085
#85a192
#8586a1

Split complementary scheme of the color pastel purple

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

#a18594
#a19885
#859fa1

Tints of the color pastel purple

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

#a18594
#b49da9
#c7b6bf
#d9ced4
#ece7ea
#ffffff

Shades of the color pastel purple

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

#a18594
#816a76
#615059
#40353b
#201b1e
#000000

Check the contrast of the color pastel purple.

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

Change the text color.
Contrast ratio: 3.33

Contrast ratio test of the color pastel purple as a background

Change the background color
Contrast ratio: 4.68

Contrast ratio test of the color pastel purple as text.

How to implement the color pastel purple in HTML and CSS

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

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

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

To set the text color pastel purple in HTML - CSS.

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

<p style="color:#a18594;"> Color pastel purple as the text color.</p>
p {
color:#a18594 ;
}