Color: #AAFD1C

#AAFD1C Color Information

#AAFD1C is a light color. The closest websafe version is #AAFD1C. A complement of this color would be #6E1CFD, perceived brightness is 0.79, and the grayscale version is #8D8D8D.

In the HSL color space, this color has a hue angle of 82°,a saturation of 98%, and a lightness of 55%.The HSV representation shows a hue of 82°, a saturation of 89%, and a value of 99%.

In a RGB color space, #AAFD1C is composed of 67% red, 99% green and 11% blue. Whereas in a CMYK color space, it is composed of 33% cyan, 0% magenta, 89% yellow and 1% black.

In the Yxy color space, this color is represented as Y: 79.43, x: 0.3806, and y: 0.5445.

Color Code #AAFD1C

#AAFD1Crgb(170, 253, 28)
HEX
#AAFD1C
RGB
rgb(170, 253, 28)
HSL
hsl(82, 98%, 55%)
HSV
hsv(82, 89%, 99%)
CMYK
33%, 0%, 89%, 1%
XYZ
X: 55.52, Y: 79.43, Z: 10.93
Lab
L: 91.43, a: -47.09, b: 83.28
Name

Shades of Color #AAFD1C

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

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

#AAFD1Crgb(170, 253, 28)

About #AAFD1C Color Code

In the HSL color space, this color has a hue angle of 82°, a saturation of 98%, and a lightness of 55%. The HSV representation shows a hue of 82°, a saturation of 89%, and a value of 99%.

  • HEX: #AAFD1C
  • RGB: rgb(170, 253, 28)
  • HSL: hsl(82, 98%, 55%)
  • HSV: hsv(82, 89%, 99%)
  • CMYK: 33.00% cyan, 0.00% magenta, 89.00% yellow, 100.00% black
  • XYZ: 55.52, 79.43, 10.93
  • Yxy: 79.43, 0.3806, 0.5445
  • Hunter Lab: 91.43, -47.09, 83.28
  • CIE-Lab: 91.43, -47.09, 83.28

In the XYZ color space, this color is represented as X: 55.52, Y: 79.43, Z: 10.93. The Yxy representation further refines this as Y: 79.43, x: 0.3806, and y: 0.5445.

In the Hunter Lab color space, this color is represented as L: 91.43, a: -47.09, and b: 83.28. Similarly, in the CIE-Lab color space, it is represented as L: 91.43, a: -47.09, and b: 83.28.

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

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

Analogous Colors of #AAFD1C

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

Split Complementary Colors of #AAFD1C

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

Tetradic Colors of #AAFD1C

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

Monochromatic Colors of #AAFD1C

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

Complementary Color of #AAFD1C

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

/* Using HEX */
body {
  background-color: #aafd1c;
}
/* Using RGB */
body {
  background-color: rgb(170, 253, 28);
}
/* Using RGB with opacity */
body {
  background-color: rgba(170, 253, 28, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(82, 98%, 55%);
}
/* Text color */
p {
  color: #aafd1c;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #aafd1c;
}
/* Border color */
.box {
  border: 4px solid #aafd1c;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #aafd1c;
}
Text Shadow Preview
/* Background with text */
div {
  background: #aafd1c;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#AAFD1C
On Black Background
#AAFD1C
On White Background
#AAFD1C

HTML Examples of #AAFD1C

<!-- Using HEX -->
<div style="background-color: #aafd1c; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(170, 253, 28); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(170, 253, 28, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(82, 98%, 55%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #aafd1c;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #aafd1c; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #aafd1c; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #aafd1c;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #aafd1c; color: #fff; padding: 16px; border-radius: 8px;">
  #AAFD1C
</div>
#AAFD1C
On Black Background
#AAFD1C
On White Background
#AAFD1C

Related Colors of #AAFD1C

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