HTML color codes for pink - hexadecimal + RGB
Discover all HTML codes for the color pink - hexadecimal, rgb, hsl, hsv, and cmyk, as well as different combinations, schemes, temperatures, hues, and types of pink color.
#ffc0cb
Complementary color of pink:
The complementary color of a color is the opposite of it on the color wheel (chromatic circle)
#c0fff4
Monochromatic scheme of the color pink
This scheme is based on the color pink and is composed of different hues, tones, and shades, both dark and light.
HTML and CSS codes for the color pink
format | code |
---|---|
hex | #ffc0cb |
rgb | rgb(255,192,203) |
hsl | hsl(350,100%,88%) |
cmyk | cmyk(0, 25, 21, 0) |
hsv | hsv(350, 25%, 100%) |
What is the pink color in RGB format?
The pink color in RGB format is composed of (255 in the red channel), (192 in the green channel), and (203 in the blue channel).
What is the pink color in CMYK format?
It is composed of (0%) cyan, (25%) magenta, (21%) yellow, and (0%) black / key.
What is the composition of the pink color in HSL?
It is composed of (350°) hue, (100%) saturation, and (88%) lightness.
What is the pink color in HSV format?
The pink color in HSV format is composed of (350°) hue, (25%) saturation, and (100%) value.
Analogous scheme of the color pink
Analogous colors are obtained from the two closest colors within the color wheel.
Triadic scheme of the color pink
The triadic scheme is obtained from 3 colors equally spaced from each other within the color wheel
Tetradic scheme of the color pink
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 pink
This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.
Tints of the color pink
Tints are obtained from the base color pink up to reaching white, finding in between shades of pastel colors.
Shades of the color pink
These shades are obtained from the base color pink up to reaching black.
Check the contrast of the color pink.
You can now validate the contrast relationship of the color pink, whether using it as a background color or as a text color.
Contrast ratio test of the color pink as a background
Contrast ratio test of the color pink as text.
How to implement the color rose in HTML and CSS
Here are examples of code to use the rose 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 rose in HTML - CSS.
To set the background color, you can use inline styles or apply them in a CSS stylesheet
<div style="background:#ffc0cb;"> Color rose as the background of a div.</div>
/* Color rose as the background of the body tag with CSS. */body {background: #ffc0cb;}
To set the text color rose in HTML - CSS.
To set the text color, you can use inline styles or apply them in a CSS stylesheet.
<p style="color:#ffc0cb;"> Color rose as the text color.</p>
p {color:#ffc0cb ;}