Color: #EEEB4C

#EEEB4C Color Information

#EEEB4C is a light color. The closest websafe version is #EEEB4C. A complement of this color would be #4E50EF, perceived brightness is 0.85, and the grayscale version is #9D9D9D.

In the HSL color space, this color has a hue angle of 59°,a saturation of 83%, and a lightness of 62%.The HSV representation shows a hue of 59°, a saturation of 68%, and a value of 93%.

In a RGB color space, #EEEB4C is composed of 93% red, 92% green and 30% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 1% magenta, 68% yellow and 7% black.

In the Yxy color space, this color is represented as Y: 79.02, x: 0.4294, and y: 0.4826.

Color Code #EEEB4C

#EEEB4Crgb(238, 235, 76)
HEX
#EEEB4C
RGB
rgb(238, 235, 76)
HSL
hsl(59, 83%, 62%)
HSV
hsv(59, 68%, 93%)
CMYK
0%, 1%, 68%, 7%
XYZ
X: 70.31, Y: 79.02, Z: 14.42
Lab
L: 91.24, a: -12.22, b: 73.09
Name

Shades of Color #EEEB4C

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

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

#EEEB4Crgb(238, 235, 76)

About #EEEB4C Color Code

In the HSL color space, this color has a hue angle of 59°, a saturation of 83%, and a lightness of 62%. The HSV representation shows a hue of 59°, a saturation of 68%, and a value of 93%.

  • HEX: #EEEB4C
  • RGB: rgb(238, 235, 76)
  • HSL: hsl(59, 83%, 62%)
  • HSV: hsv(59, 68%, 93%)
  • CMYK: 0.00% cyan, 100.00% magenta, 68.00% yellow, 7.00% black
  • XYZ: 70.31, 79.02, 14.42
  • Yxy: 79.02, 0.4294, 0.4826
  • Hunter Lab: 91.24, -12.22, 73.09
  • CIE-Lab: 91.24, -12.22, 73.09

In the XYZ color space, this color is represented as X: 70.31, Y: 79.02, Z: 14.42. The Yxy representation further refines this as Y: 79.02, x: 0.4294, and y: 0.4826.

In the Hunter Lab color space, this color is represented as L: 91.24, a: -12.22, and b: 73.09. Similarly, in the CIE-Lab color space, it is represented as L: 91.24, a: -12.22, and b: 73.09.

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

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

Analogous Colors of #EEEB4C

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

Split Complementary Colors of #EEEB4C

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

Tetradic Colors of #EEEB4C

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

Monochromatic Colors of #EEEB4C

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

Complementary Color of #EEEB4C

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

/* Using HEX */
body {
  background-color: #eeeb4c;
}
/* Using RGB */
body {
  background-color: rgb(238, 235, 76);
}
/* Using RGB with opacity */
body {
  background-color: rgba(238, 235, 76, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(59, 83%, 62%);
}
/* Text color */
p {
  color: #eeeb4c;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #eeeb4c;
}
/* Border color */
.box {
  border: 4px solid #eeeb4c;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #eeeb4c;
}
Text Shadow Preview
/* Background with text */
div {
  background: #eeeb4c;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#EEEB4C
On Black Background
#EEEB4C
On White Background
#EEEB4C

HTML Examples of #EEEB4C

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

Related Colors of #EEEB4C

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