HTML color codes for pastel pink - hexadecimal + RGB

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

#fdcae1

códigos del color pastel pink

Complementary color of pastel pink:

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

#cafde6

Monochromatic scheme of the color pastel pink

#8f6277
#ad7e94
#cd9cb2
#edbad1
#fed2e5
#ffe1ee
#fff0f6
#ffffff

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

HTML and CSS codes for the color pastel pink

formatcode
hex#fdcae1
rgbrgb(253,202,225)
hslhsl(333,93%,90%)
cmykcmyk(0, 21, 12, 1)
hsvhsv(333, 21%, 100%)

What is the pastel pink color in RGB format?

The pastel pink color in RGB format is composed of (253 in the red channel), (202 in the green channel), and (225 in the blue channel).

What is the pastel pink color in CMYK format?

It is composed of (0%) cyan, (21%) magenta, (12%) yellow, and (1%) black / key.

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

It is composed of (333°) hue, (93%) saturation, and (90%) lightness.

What is the pastel pink color in HSV format?

The pastel pink color in HSV format is composed of (333°) hue, (21%) saturation, and (100%) value.

Analogous scheme of the color pastel pink

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

#fdcee3
#fdd0ce
#fdcefb

Triadic scheme of the color pastel pink

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

#fdcae1
#e1fdca
#cae1fd

Tetradic scheme of the color pastel pink

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

#fdcae1
#fafdca
#cafde6
#cccafd

Split complementary scheme of the color pastel pink

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

#fdcae1
#fdf0ca
#caf5fd

Tints of the color pastel pink

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

#fdcae1
#fdd5e7
#fedfed
#feeaf3
#fff4f9
#ffffff

Shades of the color pastel pink

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

#fdcae1
#caa2b4
#987987
#65515a
#33282d
#000000

Check the contrast of the color pastel pink.

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

Change the text color.
Contrast ratio: 1.43

Contrast ratio test of the color pastel pink as a background

Change the background color
Contrast ratio: 10.94

Contrast ratio test of the color pastel pink as text.

How to implement the color pastel pink in HTML and CSS

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

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

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

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

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

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