Color: #B8AEEA

#B8AEEA Color Information

#B8AEEA is a light color. The closest websafe version is #B8AEEA. A complement of this color would be #E0EAAE, perceived brightness is 0.72, and the grayscale version is #CCCCCC.

In the HSL color space, this color has a hue angle of 250°,a saturation of 59%, and a lightness of 80%.The HSV representation shows a hue of 250°, a saturation of 26%, and a value of 92%.

In a RGB color space, #B8AEEA is composed of 72% red, 68% green and 92% blue. Whereas in a CMYK color space, it is composed of 21% cyan, 26% magenta, 0% yellow and 8% black.

In the Yxy color space, this color is represented as Y: 46.00, x: 0.3089, and y: 0.2902.

Color Code #B8AEEA

#B8AEEArgb(184, 174, 234)
HEX
#B8AEEA
RGB
rgb(184, 174, 234)
HSL
hsl(250, 59%, 80%)
HSV
hsv(250, 26%, 92%)
CMYK
21%, 26%, 0%, 8%
XYZ
X: 48.97, Y: 46.00, Z: 63.54
Lab
L: 73.54, a: 12.97, b: -28.93
Name

Shades of Color #B8AEEA

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

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

#B8AEEArgb(184, 174, 234)

About #B8AEEA Color Code

In the HSL color space, this color has a hue angle of 250°, a saturation of 59%, and a lightness of 80%. The HSV representation shows a hue of 250°, a saturation of 26%, and a value of 92%.

  • HEX: #B8AEEA
  • RGB: rgb(184, 174, 234)
  • HSL: hsl(250, 59%, 80%)
  • HSV: hsv(250, 26%, 92%)
  • CMYK: 21.00% cyan, 26.00% magenta, 0.00% yellow, 8.00% black
  • XYZ: 48.97, 46.00, 63.54
  • Yxy: 46.00, 0.3089, 0.2902
  • Hunter Lab: 73.54, 12.97, -28.93
  • CIE-Lab: 73.54, 12.97, -28.93

In the XYZ color space, this color is represented as X: 48.97, Y: 46.00, Z: 63.54. The Yxy representation further refines this as Y: 46.00, x: 0.3089, and y: 0.2902.

In the Hunter Lab color space, this color is represented as L: 73.54, a: 12.97, and b: -28.93. Similarly, in the CIE-Lab color space, it is represented as L: 73.54, a: 12.97, and b: -28.93.

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

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

Analogous Colors of #B8AEEA

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

Split Complementary Colors of #B8AEEA

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

Tetradic Colors of #B8AEEA

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

Monochromatic Colors of #B8AEEA

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

Complementary Color of #B8AEEA

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

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

HTML Examples of #B8AEEA

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

Related Colors of #B8AEEA

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