Color: #C7AAEB

#C7AAEB Color Information

#C7AAEB is a light color. The closest websafe version is #C7AAEB. A complement of this color would be #CDEBA8, perceived brightness is 0.73, and the grayscale version is #CBCBCB.

In the HSL color space, this color has a hue angle of 267°,a saturation of 62%, and a lightness of 79%.The HSV representation shows a hue of 267°, a saturation of 28%, and a value of 92%.

In a RGB color space, #C7AAEB is composed of 78% red, 67% green and 92% blue. Whereas in a CMYK color space, it is composed of 15% cyan, 28% magenta, 0% yellow and 8% black.

In the Yxy color space, this color is represented as Y: 46.56, x: 0.3210, and y: 0.2859.

Color Code #C7AAEB

#C7AAEBrgb(199, 170, 235)
HEX
#C7AAEB
RGB
rgb(199, 170, 235)
HSL
hsl(267, 62%, 79%)
HSV
hsv(267, 28%, 92%)
CMYK
15%, 28%, 0%, 8%
XYZ
X: 52.27, Y: 46.56, Z: 64.03
Lab
L: 73.91, a: 20.16, b: -28.77
Name

Shades of Color #C7AAEB

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

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

#C7AAEBrgb(199, 170, 235)

About #C7AAEB Color Code

In the HSL color space, this color has a hue angle of 267°, a saturation of 62%, and a lightness of 79%. The HSV representation shows a hue of 267°, a saturation of 28%, and a value of 92%.

  • HEX: #C7AAEB
  • RGB: rgb(199, 170, 235)
  • HSL: hsl(267, 62%, 79%)
  • HSV: hsv(267, 28%, 92%)
  • CMYK: 15.00% cyan, 28.00% magenta, 0.00% yellow, 8.00% black
  • XYZ: 52.27, 46.56, 64.03
  • Yxy: 46.56, 0.3210, 0.2859
  • Hunter Lab: 73.91, 20.16, -28.77
  • CIE-Lab: 73.91, 20.16, -28.77

In the XYZ color space, this color is represented as X: 52.27, Y: 46.56, Z: 64.03. The Yxy representation further refines this as Y: 46.56, x: 0.3210, and y: 0.2859.

In the Hunter Lab color space, this color is represented as L: 73.91, a: 20.16, and b: -28.77. Similarly, in the CIE-Lab color space, it is represented as L: 73.91, a: 20.16, and b: -28.77.

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

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

Analogous Colors of #C7AAEB

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

Split Complementary Colors of #C7AAEB

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

Tetradic Colors of #C7AAEB

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

Monochromatic Colors of #C7AAEB

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

Complementary Color of #C7AAEB

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

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

HTML Examples of #C7AAEB

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

Related Colors of #C7AAEB

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