Color: #C9AEE5

#C9AEE5 Color Information

#C9AEE5 is a light color. The closest websafe version is #C9AEE5. A complement of this color would be #CAE5AE, perceived brightness is 0.74, and the grayscale version is #CACACA.

In the HSL color space, this color has a hue angle of 269°,a saturation of 51%, and a lightness of 79%.The HSV representation shows a hue of 269°, a saturation of 24%, and a value of 90%.

In a RGB color space, #C9AEE5 is composed of 79% red, 68% green and 90% blue. Whereas in a CMYK color space, it is composed of 12% cyan, 24% magenta, 0% yellow and 10% black.

In the Yxy color space, this color is represented as Y: 48.09, x: 0.3271, and y: 0.2969.

Color Code #C9AEE5

#C9AEE5rgb(201, 174, 229)
HEX
#C9AEE5
RGB
rgb(201, 174, 229)
HSL
hsl(269, 51%, 79%)
HSV
hsv(269, 24%, 90%)
CMYK
12%, 24%, 0%, 10%
XYZ
X: 52.98, Y: 48.09, Z: 60.88
Lab
L: 74.88, a: 17.80, b: -24.03
Name

Shades of Color #C9AEE5

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

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

#C9AEE5rgb(201, 174, 229)

About #C9AEE5 Color Code

In the HSL color space, this color has a hue angle of 269°, a saturation of 51%, and a lightness of 79%. The HSV representation shows a hue of 269°, a saturation of 24%, and a value of 90%.

  • HEX: #C9AEE5
  • RGB: rgb(201, 174, 229)
  • HSL: hsl(269, 51%, 79%)
  • HSV: hsv(269, 24%, 90%)
  • CMYK: 12.00% cyan, 24.00% magenta, 0.00% yellow, 10.00% black
  • XYZ: 52.98, 48.09, 60.88
  • Yxy: 48.09, 0.3271, 0.2969
  • Hunter Lab: 74.88, 17.80, -24.03
  • CIE-Lab: 74.88, 17.80, -24.03

In the XYZ color space, this color is represented as X: 52.98, Y: 48.09, Z: 60.88. The Yxy representation further refines this as Y: 48.09, x: 0.3271, and y: 0.2969.

In the Hunter Lab color space, this color is represented as L: 74.88, a: 17.80, and b: -24.03. Similarly, in the CIE-Lab color space, it is represented as L: 74.88, a: 17.80, and b: -24.03.

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

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

Analogous Colors of #C9AEE5

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

Split Complementary Colors of #C9AEE5

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

Tetradic Colors of #C9AEE5

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

Monochromatic Colors of #C9AEE5

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

Complementary Color of #C9AEE5

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

/* Using HEX */
body {
  background-color: #c9aee5;
}
/* Using RGB */
body {
  background-color: rgb(201, 174, 229);
}
/* Using RGB with opacity */
body {
  background-color: rgba(201, 174, 229, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(269, 51%, 79%);
}
/* Text color */
p {
  color: #c9aee5;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #c9aee5;
}
/* Border color */
.box {
  border: 4px solid #c9aee5;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #c9aee5;
}
Text Shadow Preview
/* Background with text */
div {
  background: #c9aee5;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#C9AEE5
On Black Background
#C9AEE5
On White Background
#C9AEE5

HTML Examples of #C9AEE5

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

Related Colors of #C9AEE5

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