Color: #EFB8FE

#EFB8FE Color Information

#EFB8FE is a light color. The closest websafe version is #EFB8FE. A complement of this color would be #C8FEB9, perceived brightness is 0.82, and the grayscale version is #DBDBDB.

In the HSL color space, this color has a hue angle of 287°,a saturation of 97%, and a lightness of 86%.The HSV representation shows a hue of 287°, a saturation of 28%, and a value of 100%.

In a RGB color space, #EFB8FE is composed of 94% red, 72% green and 100% blue. Whereas in a CMYK color space, it is composed of 6% cyan, 28% magenta, 0% yellow and 0% black.

In the Yxy color space, this color is represented as Y: 59.57, x: 0.3404, and y: 0.2885.

Color Code #EFB8FE

#EFB8FErgb(239, 184, 254)
HEX
#EFB8FE
RGB
rgb(239, 184, 254)
HSL
hsl(287, 97%, 86%)
HSV
hsv(287, 28%, 100%)
CMYK
6%, 28%, 0%, 0%
XYZ
X: 70.28, Y: 59.57, Z: 76.64
Lab
L: 81.61, a: 29.25, b: -26.84
Name

Shades of Color #EFB8FE

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

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

#EFB8FErgb(239, 184, 254)

About #EFB8FE Color Code

In the HSL color space, this color has a hue angle of 287°, a saturation of 97%, and a lightness of 86%. The HSV representation shows a hue of 287°, a saturation of 28%, and a value of 100%.

  • HEX: #EFB8FE
  • RGB: rgb(239, 184, 254)
  • HSL: hsl(287, 97%, 86%)
  • HSV: hsv(287, 28%, 100%)
  • CMYK: 6.00% cyan, 28.00% magenta, 0.00% yellow, 0.00% black
  • XYZ: 70.28, 59.57, 76.64
  • Yxy: 59.57, 0.3404, 0.2885
  • Hunter Lab: 81.61, 29.25, -26.84
  • CIE-Lab: 81.61, 29.25, -26.84

In the XYZ color space, this color is represented as X: 70.28, Y: 59.57, Z: 76.64. The Yxy representation further refines this as Y: 59.57, x: 0.3404, and y: 0.2885.

In the Hunter Lab color space, this color is represented as L: 81.61, a: 29.25, and b: -26.84. Similarly, in the CIE-Lab color space, it is represented as L: 81.61, a: 29.25, and b: -26.84.

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

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

Analogous Colors of #EFB8FE

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

Split Complementary Colors of #EFB8FE

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

Tetradic Colors of #EFB8FE

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

Monochromatic Colors of #EFB8FE

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

Complementary Color of #EFB8FE

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

/* Using HEX */
body {
  background-color: #efb8fe;
}
/* Using RGB */
body {
  background-color: rgb(239, 184, 254);
}
/* Using RGB with opacity */
body {
  background-color: rgba(239, 184, 254, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(287, 97%, 86%);
}
/* Text color */
p {
  color: #efb8fe;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #efb8fe;
}
/* Border color */
.box {
  border: 4px solid #efb8fe;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #efb8fe;
}
Text Shadow Preview
/* Background with text */
div {
  background: #efb8fe;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#EFB8FE
On Black Background
#EFB8FE
On White Background
#EFB8FE

HTML Examples of #EFB8FE

<!-- Using HEX -->
<div style="background-color: #efb8fe; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(239, 184, 254); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(239, 184, 254, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(287, 97%, 86%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #efb8fe;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #efb8fe; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #efb8fe; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #efb8fe;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #efb8fe; color: #fff; padding: 16px; border-radius: 8px;">
  #EFB8FE
</div>
#EFB8FE
On Black Background
#EFB8FE
On White Background
#EFB8FE

Related Colors of #EFB8FE

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