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
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
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
format | code |
---|---|
hex | #a18594 |
rgb | rgb(161,133,148) |
hsl | hsl(328,13%,58%) |
cmyk | cmyk(0, 18, 9, 37) |
hsv | hsv(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.
Triadic scheme of the color pastel purple
The triadic scheme is obtained from 3 colors equally spaced from each other within the color wheel
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.
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.
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.
Shades of the color pastel purple
These shades are obtained from the base color pastel purple up to reaching black.
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.
Contrast ratio test of the color pastel purple as a background
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 ;}