Color: #AEAC7E

#AEAC7E Color Information

#AEAC7E is a light color. The closest websafe version is #AEAC7E. A complement of this color would be #7E80AE, perceived brightness is 0.66, and the grayscale version is #969696.

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

In a RGB color space, #AEAC7E is composed of 68% red, 67% green and 49% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 1% magenta, 28% yellow and 32% black.

In the Yxy color space, this color is represented as Y: 40.26, x: 0.3845, and y: 0.4147.

Color Code #AEAC7E

#AEAC7Ergb(174, 172, 126)
HEX
#AEAC7E
RGB
rgb(174, 172, 126)
HSL
hsl(58, 23%, 59%)
HSV
hsv(58, 28%, 68%)
CMYK
0%, 1%, 28%, 32%
XYZ
X: 37.33, Y: 40.26, Z: 19.50
Lab
L: 69.65, a: -4.78, b: 24.04
Name

Shades of Color #AEAC7E

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

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

#AEAC7Ergb(174, 172, 126)

About #AEAC7E Color Code

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

  • HEX: #AEAC7E
  • RGB: rgb(174, 172, 126)
  • HSL: hsl(58, 23%, 59%)
  • HSV: hsv(58, 28%, 68%)
  • CMYK: 0.00% cyan, 100.00% magenta, 28.00% yellow, 32.00% black
  • XYZ: 37.33, 40.26, 19.50
  • Yxy: 40.26, 0.3845, 0.4147
  • Hunter Lab: 69.65, -4.78, 24.04
  • CIE-Lab: 69.65, -4.78, 24.04

In the XYZ color space, this color is represented as X: 37.33, Y: 40.26, Z: 19.50. The Yxy representation further refines this as Y: 40.26, x: 0.3845, and y: 0.4147.

In the Hunter Lab color space, this color is represented as L: 69.65, a: -4.78, and b: 24.04. Similarly, in the CIE-Lab color space, it is represented as L: 69.65, a: -4.78, and b: 24.04.

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

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

Analogous Colors of #AEAC7E

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

Split Complementary Colors of #AEAC7E

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

Tetradic Colors of #AEAC7E

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

Monochromatic Colors of #AEAC7E

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

Complementary Color of #AEAC7E

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

/* Using HEX */
body {
  background-color: #aeac7e;
}
/* Using RGB */
body {
  background-color: rgb(174, 172, 126);
}
/* Using RGB with opacity */
body {
  background-color: rgba(174, 172, 126, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(58, 23%, 59%);
}
/* Text color */
p {
  color: #aeac7e;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #aeac7e;
}
/* Border color */
.box {
  border: 4px solid #aeac7e;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #aeac7e;
}
Text Shadow Preview
/* Background with text */
div {
  background: #aeac7e;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#AEAC7E
On Black Background
#AEAC7E
On White Background
#AEAC7E

HTML Examples of #AEAC7E

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

Related Colors of #AEAC7E

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