Color: #E5E1E2

#E5E1E2 Color Information

#E5E1E2 is a light color. The closest websafe version is #E5E1E2. A complement of this color would be #E1E5E4, perceived brightness is 0.89, and the grayscale version is #E3E3E3.

In the HSL color space, this color has a hue angle of 345°,a saturation of 7%, and a lightness of 89%.The HSV representation shows a hue of 345°, a saturation of 2%, and a value of 90%.

In a RGB color space, #E5E1E2 is composed of 90% red, 88% green and 89% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 2% magenta, 1% yellow and 10% black.

In the Yxy color space, this color is represented as Y: 76.02, x: 0.3480, and y: 0.3573.

Color Code #E5E1E2

#E5E1E2rgb(229, 225, 226)
HEX
#E5E1E2
RGB
rgb(229, 225, 226)
HSL
hsl(345, 7%, 89%)
HSV
hsv(345, 2%, 90%)
CMYK
0%, 2%, 1%, 10%
XYZ
X: 74.04, Y: 76.02, Z: 62.72
Lab
L: 89.87, a: 1.53, b: 0.02
Name

Shades of Color #E5E1E2

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

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

#E5E1E2rgb(229, 225, 226)

About #E5E1E2 Color Code

In the HSL color space, this color has a hue angle of 345°, a saturation of 7%, and a lightness of 89%. The HSV representation shows a hue of 345°, a saturation of 2%, and a value of 90%.

  • HEX: #E5E1E2
  • RGB: rgb(229, 225, 226)
  • HSL: hsl(345, 7%, 89%)
  • HSV: hsv(345, 2%, 90%)
  • CMYK: 0.00% cyan, 2.00% magenta, 100.00% yellow, 10.00% black
  • XYZ: 74.04, 76.02, 62.72
  • Yxy: 76.02, 0.3480, 0.3573
  • Hunter Lab: 89.87, 1.53, 0.02
  • CIE-Lab: 89.87, 1.53, 0.02

In the XYZ color space, this color is represented as X: 74.04, Y: 76.02, Z: 62.72. The Yxy representation further refines this as Y: 76.02, x: 0.3480, and y: 0.3573.

In the Hunter Lab color space, this color is represented as L: 89.87, a: 1.53, and b: 0.02. Similarly, in the CIE-Lab color space, it is represented as L: 89.87, a: 1.53, and b: 0.02.

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

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

Analogous Colors of #E5E1E2

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

Split Complementary Colors of #E5E1E2

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

Tetradic Colors of #E5E1E2

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

Monochromatic Colors of #E5E1E2

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

Complementary Color of #E5E1E2

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

/* Using HEX */
body {
  background-color: #e5e1e2;
}
/* Using RGB */
body {
  background-color: rgb(229, 225, 226);
}
/* Using RGB with opacity */
body {
  background-color: rgba(229, 225, 226, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(345, 7%, 89%);
}
/* Text color */
p {
  color: #e5e1e2;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #e5e1e2;
}
/* Border color */
.box {
  border: 4px solid #e5e1e2;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #e5e1e2;
}
Text Shadow Preview
/* Background with text */
div {
  background: #e5e1e2;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#E5E1E2
On Black Background
#E5E1E2
On White Background
#E5E1E2

HTML Examples of #E5E1E2

<!-- Using HEX -->
<div style="background-color: #e5e1e2; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(229, 225, 226); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(229, 225, 226, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(345, 7%, 89%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #e5e1e2;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #e5e1e2; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #e5e1e2; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #e5e1e2;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #e5e1e2; color: #fff; padding: 16px; border-radius: 8px;">
  #E5E1E2
</div>
#E5E1E2
On Black Background
#E5E1E2
On White Background
#E5E1E2

Related Colors of #E5E1E2

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