Color: #F2EBF8

#F2EBF8 Color Information

#F2EBF8 is a light color. The closest websafe version is #F2EBF8. A complement of this color would be #F2F8EC, perceived brightness is 0.94, and the grayscale version is #F2F2F2.

In the HSL color space, this color has a hue angle of 272°,a saturation of 48%, and a lightness of 95%.The HSV representation shows a hue of 272°, a saturation of 5%, and a value of 97%.

In a RGB color space, #F2EBF8 is composed of 95% red, 92% green and 97% blue. Whereas in a CMYK color space, it is composed of 2% cyan, 5% magenta, 0% yellow and 3% black.

In the Yxy color space, this color is represented as Y: 85.00, x: 0.3428, and y: 0.3463.

Color Code #F2EBF8

#F2EBF8rgb(242, 235, 248)
HEX
#F2EBF8
RGB
rgb(242, 235, 248)
HSL
hsl(272, 48%, 95%)
HSV
hsv(272, 5%, 97%)
CMYK
2%, 5%, 0%, 3%
XYZ
X: 84.14, Y: 85.00, Z: 76.34
Lab
L: 93.88, a: 4.16, b: -5.42
Name

Shades of Color #F2EBF8

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

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

#F2EBF8rgb(242, 235, 248)

About #F2EBF8 Color Code

In the HSL color space, this color has a hue angle of 272°, a saturation of 48%, and a lightness of 95%. The HSV representation shows a hue of 272°, a saturation of 5%, and a value of 97%.

  • HEX: #F2EBF8
  • RGB: rgb(242, 235, 248)
  • HSL: hsl(272, 48%, 95%)
  • HSV: hsv(272, 5%, 97%)
  • CMYK: 2.00% cyan, 5.00% magenta, 0.00% yellow, 3.00% black
  • XYZ: 84.14, 85.00, 76.34
  • Yxy: 85.00, 0.3428, 0.3463
  • Hunter Lab: 93.88, 4.16, -5.42
  • CIE-Lab: 93.88, 4.16, -5.42

In the XYZ color space, this color is represented as X: 84.14, Y: 85.00, Z: 76.34. The Yxy representation further refines this as Y: 85.00, x: 0.3428, and y: 0.3463.

In the Hunter Lab color space, this color is represented as L: 93.88, a: 4.16, and b: -5.42. Similarly, in the CIE-Lab color space, it is represented as L: 93.88, a: 4.16, and b: -5.42.

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

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

Analogous Colors of #F2EBF8

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

Split Complementary Colors of #F2EBF8

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

Tetradic Colors of #F2EBF8

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

Monochromatic Colors of #F2EBF8

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

Complementary Color of #F2EBF8

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

/* Using HEX */
body {
  background-color: #f2ebf8;
}
/* Using RGB */
body {
  background-color: rgb(242, 235, 248);
}
/* Using RGB with opacity */
body {
  background-color: rgba(242, 235, 248, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(272, 48%, 95%);
}
/* Text color */
p {
  color: #f2ebf8;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #f2ebf8;
}
/* Border color */
.box {
  border: 4px solid #f2ebf8;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #f2ebf8;
}
Text Shadow Preview
/* Background with text */
div {
  background: #f2ebf8;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#F2EBF8
On Black Background
#F2EBF8
On White Background
#F2EBF8

HTML Examples of #F2EBF8

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

Related Colors of #F2EBF8

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