Color: #EABF7B

#EABF7B Color Information

#EABF7B is a light color. The closest websafe version is #EABF7B. A complement of this color would be #7BA5EA, perceived brightness is 0.77, and the grayscale version is #B3B3B3.

In the HSL color space, this color has a hue angle of 37°,a saturation of 73%, and a lightness of 70%.The HSV representation shows a hue of 37°, a saturation of 47%, and a value of 92%.

In a RGB color space, #EABF7B is composed of 92% red, 75% green and 48% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 18% magenta, 47% yellow and 8% black.

In the Yxy color space, this color is represented as Y: 56.86, x: 0.4322, and y: 0.4181.

Color Code #EABF7B

#EABF7Brgb(234, 191, 123)
HEX
#EABF7B
RGB
rgb(234, 191, 123)
HSL
hsl(37, 73%, 70%)
HSV
hsv(37, 47%, 92%)
CMYK
0%, 18%, 47%, 8%
XYZ
X: 58.78, Y: 56.86, Z: 20.35
Lab
L: 80.10, a: 9.72, b: 40.27
Name

Shades of Color #EABF7B

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

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

#EABF7Brgb(234, 191, 123)

About #EABF7B Color Code

In the HSL color space, this color has a hue angle of 37°, a saturation of 73%, and a lightness of 70%. The HSV representation shows a hue of 37°, a saturation of 47%, and a value of 92%.

  • HEX: #EABF7B
  • RGB: rgb(234, 191, 123)
  • HSL: hsl(37, 73%, 70%)
  • HSV: hsv(37, 47%, 92%)
  • CMYK: 0.00% cyan, 18.00% magenta, 47.00% yellow, 8.00% black
  • XYZ: 58.78, 56.86, 20.35
  • Yxy: 56.86, 0.4322, 0.4181
  • Hunter Lab: 80.10, 9.72, 40.27
  • CIE-Lab: 80.10, 9.72, 40.27

In the XYZ color space, this color is represented as X: 58.78, Y: 56.86, Z: 20.35. The Yxy representation further refines this as Y: 56.86, x: 0.4322, and y: 0.4181.

In the Hunter Lab color space, this color is represented as L: 80.10, a: 9.72, and b: 40.27. Similarly, in the CIE-Lab color space, it is represented as L: 80.10, a: 9.72, and b: 40.27.

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

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

Analogous Colors of #EABF7B

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

Split Complementary Colors of #EABF7B

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

Tetradic Colors of #EABF7B

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

Monochromatic Colors of #EABF7B

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

Complementary Color of #EABF7B

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

/* Using HEX */
body {
  background-color: #eabf7b;
}
/* Using RGB */
body {
  background-color: rgb(234, 191, 123);
}
/* Using RGB with opacity */
body {
  background-color: rgba(234, 191, 123, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(37, 73%, 70%);
}
/* Text color */
p {
  color: #eabf7b;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #eabf7b;
}
/* Border color */
.box {
  border: 4px solid #eabf7b;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #eabf7b;
}
Text Shadow Preview
/* Background with text */
div {
  background: #eabf7b;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#EABF7B
On Black Background
#EABF7B
On White Background
#EABF7B

HTML Examples of #EABF7B

<!-- Using HEX -->
<div style="background-color: #eabf7b; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(234, 191, 123); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(234, 191, 123, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(37, 73%, 70%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #eabf7b;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #eabf7b; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #eabf7b; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #eabf7b;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #eabf7b; color: #fff; padding: 16px; border-radius: 8px;">
  #EABF7B
</div>
#EABF7B
On Black Background
#EABF7B
On White Background
#EABF7B

Related Colors of #EABF7B

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