Color: #F2BDCF

#F2BDCF Color Information

#F2BDCF is a light color. The closest websafe version is #F2BDCF. A complement of this color would be #BFF2E1, perceived brightness is 0.81, and the grayscale version is #D7D7D7.

In the HSL color space, this color has a hue angle of 340°,a saturation of 67%, and a lightness of 85%.The HSV representation shows a hue of 340°, a saturation of 22%, and a value of 95%.

In a RGB color space, #F2BDCF is composed of 95% red, 74% green and 81% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 22% magenta, 14% yellow and 5% black.

In the Yxy color space, this color is represented as Y: 60.02, x: 0.3778, and y: 0.3372.

Color Code #F2BDCF

#F2BDCFrgb(242, 189, 207)
HEX
#F2BDCF
RGB
rgb(242, 189, 207)
HSL
hsl(340, 67%, 85%)
HSV
hsv(340, 22%, 95%)
CMYK
0%, 22%, 14%, 5%
XYZ
X: 67.24, Y: 60.02, Z: 50.74
Lab
L: 81.85, a: 21.64, b: -1.36
Name

Shades of Color #F2BDCF

Shades are created by darkening the original color #F2BDCF in equal steps from 0% to 90%. These shades are perfect for creating depth and contrast in your designs. Use them to add visual hierarchy or highlight specific elements in your projects.

Tints of Color #F2BDCF

Tints are created by lightening the original color #F2BDCF in equal steps from 0% to 90%, ending with pure white. These tints are ideal for creating soft backgrounds, subtle highlights, or cohesive UI elements that complement your designs.

#F2BDCFrgb(242, 189, 207)

About #F2BDCF Color Code

In the HSL color space, this color has a hue angle of 340°, a saturation of 67%, and a lightness of 85%. The HSV representation shows a hue of 340°, a saturation of 22%, and a value of 95%.

  • HEX: #F2BDCF
  • RGB: rgb(242, 189, 207)
  • HSL: hsl(340, 67%, 85%)
  • HSV: hsv(340, 22%, 95%)
  • CMYK: 0.00% cyan, 22.00% magenta, 14.00% yellow, 5.00% black
  • XYZ: 67.24, 60.02, 50.74
  • Yxy: 60.02, 0.3778, 0.3372
  • Hunter Lab: 81.85, 21.64, -1.36
  • CIE-Lab: 81.85, 21.64, -1.36

In the XYZ color space, this color is represented as X: 67.24, Y: 60.02, Z: 50.74. The Yxy representation further refines this as Y: 60.02, x: 0.3778, and y: 0.3372.

In the Hunter Lab color space, this color is represented as L: 81.85, a: 21.64, and b: -1.36. Similarly, in the CIE-Lab color space, it is represented as L: 81.85, a: 21.64, and b: -1.36.

Use these color codes in your CSS, design tools, or anywhere you need to specify a color. You can also explore its shades and tints for more creative options.

Triadic Colors of #F2BDCF

Triadic colors are three colors evenly spaced around the color wheel, including #F2BDCF. They create vibrant and balanced color schemes, perfect for designs that need contrast and harmony.

Analogous Colors of #F2BDCF

Analogous colors are adjacent to #F2BDCF on the color wheel. They create harmonious and visually pleasing designs, ideal for projects that need a cohesive look.

Split Complementary Colors of #F2BDCF

Split complementary colors are two colors adjacent to the complementary color of #F2BDCF. They create a balanced and visually appealing color scheme.

Tetradic Colors of #F2BDCF

Tetradic colors form a rectangle on the color wheel, including #F2BDCF. They provide vibrant and diverse color schemes for creative designs.

Monochromatic Colors of #F2BDCF

Monochromatic colors are variations of #F2BDCF, including its shades, tints, and tones. They create elegant and minimalistic designs with a unified color theme.

Complementary Color of #F2BDCF

The complementary color of #F2BDCF is opposite it on the color wheel. Complementary colors provide strong contrast and are ideal for designs that need visual impact and attention.

CSS Examples of #F2BDCF

/* Using HEX */
body {
  background-color: #f2bdcf;
}
/* Using RGB */
body {
  background-color: rgb(242, 189, 207);
}
/* Using RGB with opacity */
body {
  background-color: rgba(242, 189, 207, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(340, 67%, 85%);
}
/* Text color */
p {
  color: #f2bdcf;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #f2bdcf;
}
/* Border color */
.box {
  border: 4px solid #f2bdcf;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #f2bdcf;
}
Text Shadow Preview
/* Background with text */
div {
  background: #f2bdcf;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#F2BDCF
On Black Background
#F2BDCF
On White Background
#F2BDCF

HTML Examples of #F2BDCF

<!-- Using HEX -->
<div style="background-color: #f2bdcf; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(242, 189, 207); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(242, 189, 207, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(340, 67%, 85%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #f2bdcf;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #f2bdcf; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #f2bdcf; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #f2bdcf;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #f2bdcf; color: #fff; padding: 16px; border-radius: 8px;">
  #F2BDCF
</div>
#F2BDCF
On Black Background
#F2BDCF
On White Background
#F2BDCF

Related Colors of #F2BDCF

These colors are similar to #F2BDCF, with slight variations in hue. Use them to create harmonious designs or explore alternative shades for your projects.