HTML color codes for pastel yellow - hexadecimal + RGB

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

#fdfd96

códigos del color pastel yellow

Complementary color of pastel yellow:

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

#9696fd

Monochromatic scheme of the color pastel yellow

#8c902e
#abae4b
#cbcd69
#eced87
#fefda6
#fffec4
#fffee1
#ffffff

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

HTML and CSS codes for the color pastel yellow

formatcode
hex#fdfd96
rgbrgb(253,253,150)
hslhsl(60,97%,80%)
cmykcmyk(0, 0, 41, 1)
hsvhsv(60, 41%, 100%)

What is the pastel yellow color in RGB format?

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

What is the pastel yellow color in CMYK format?

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

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

It is composed of (60°) hue, (97%) saturation, and (80%) lightness.

What is the pastel yellow color in HSV format?

The pastel yellow color in HSV format is composed of (60°) hue, (41%) saturation, and (100%) value.

Analogous scheme of the color pastel yellow

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

#fdfd9b
#ccfd9b
#fdcc9b

Triadic scheme of the color pastel yellow

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

#fdfd96
#96fdfd
#fd96fd

Tetradic scheme of the color pastel yellow

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

#fdfd96
#96fdc9
#9696fd
#fd96c9

Split complementary scheme of the color pastel yellow

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

#fdfd96
#96fdab
#d496fd

Tints of the color pastel yellow

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

#fdfd96
#fdfdab
#fefec0
#fefed5
#ffffea
#ffffff

Shades of the color pastel yellow

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

#fdfd96
#caca78
#98985a
#65653c
#33331e
#000000

Check the contrast of the color pastel yellow.

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

Change the text color.
Contrast ratio: 1.07

Contrast ratio test of the color pastel yellow as a background

Change the background color
Contrast ratio: 14.63

Contrast ratio test of the color pastel yellow as text.

How to implement the color pastel yellow in HTML and CSS

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

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

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

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

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

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