Color: #F7ABFB

#F7ABFB Color Information

#F7ABFB is a light color. The closest websafe version is #F7ABFB. A complement of this color would be #B0FBAC, perceived brightness is 0.80, and the grayscale version is #D3D3D3.

In the HSL color space, this color has a hue angle of 297°,a saturation of 91%, and a lightness of 83%.The HSV representation shows a hue of 297°, a saturation of 32%, and a value of 98%.

In a RGB color space, #F7ABFB is composed of 97% red, 67% green and 98% blue. Whereas in a CMYK color space, it is composed of 2% cyan, 32% magenta, 0% yellow and 2% black.

In the Yxy color space, this color is represented as Y: 55.74, x: 0.3503, and y: 0.2788.

Color Code #F7ABFB

#F7ABFBrgb(247, 171, 251)
HEX
#F7ABFB
RGB
rgb(247, 171, 251)
HSL
hsl(297, 91%, 83%)
HSV
hsv(297, 32%, 98%)
CMYK
2%, 32%, 0%, 2%
XYZ
X: 70.04, Y: 55.74, Z: 74.15
Lab
L: 79.46, a: 37.99, b: -28.40
Name

Shades of Color #F7ABFB

Shades are created by darkening the original color #F7ABFB 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 #F7ABFB

Tints are created by lightening the original color #F7ABFB 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.

#F7ABFBrgb(247, 171, 251)

About #F7ABFB Color Code

In the HSL color space, this color has a hue angle of 297°, a saturation of 91%, and a lightness of 83%. The HSV representation shows a hue of 297°, a saturation of 32%, and a value of 98%.

  • HEX: #F7ABFB
  • RGB: rgb(247, 171, 251)
  • HSL: hsl(297, 91%, 83%)
  • HSV: hsv(297, 32%, 98%)
  • CMYK: 2.00% cyan, 32.00% magenta, 0.00% yellow, 2.00% black
  • XYZ: 70.04, 55.74, 74.15
  • Yxy: 55.74, 0.3503, 0.2788
  • Hunter Lab: 79.46, 37.99, -28.40
  • CIE-Lab: 79.46, 37.99, -28.40

In the XYZ color space, this color is represented as X: 70.04, Y: 55.74, Z: 74.15. The Yxy representation further refines this as Y: 55.74, x: 0.3503, and y: 0.2788.

In the Hunter Lab color space, this color is represented as L: 79.46, a: 37.99, and b: -28.40. Similarly, in the CIE-Lab color space, it is represented as L: 79.46, a: 37.99, and b: -28.40.

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 #F7ABFB

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

Analogous Colors of #F7ABFB

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

Split Complementary Colors of #F7ABFB

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

Tetradic Colors of #F7ABFB

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

Monochromatic Colors of #F7ABFB

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

Complementary Color of #F7ABFB

The complementary color of #F7ABFB 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 #F7ABFB

/* Using HEX */
body {
  background-color: #f7abfb;
}
/* Using RGB */
body {
  background-color: rgb(247, 171, 251);
}
/* Using RGB with opacity */
body {
  background-color: rgba(247, 171, 251, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(297, 91%, 83%);
}
/* Text color */
p {
  color: #f7abfb;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #f7abfb;
}
/* Border color */
.box {
  border: 4px solid #f7abfb;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #f7abfb;
}
Text Shadow Preview
/* Background with text */
div {
  background: #f7abfb;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#F7ABFB
On Black Background
#F7ABFB
On White Background
#F7ABFB

HTML Examples of #F7ABFB

<!-- Using HEX -->
<div style="background-color: #f7abfb; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(247, 171, 251); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(247, 171, 251, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(297, 91%, 83%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #f7abfb;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #f7abfb; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #f7abfb; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #f7abfb;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #f7abfb; color: #fff; padding: 16px; border-radius: 8px;">
  #F7ABFB
</div>
#F7ABFB
On Black Background
#F7ABFB
On White Background
#F7ABFB

Related Colors of #F7ABFB

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