Color: #A1A2FE

#A1A2FE Color Information

#A1A2FE is a light color. The closest websafe version is #A1A2FE. A complement of this color would be #FEFC9F, perceived brightness is 0.68, and the grayscale version is #D0D0D0.

In the HSL color space, this color has a hue angle of 239°,a saturation of 98%, and a lightness of 81%.The HSV representation shows a hue of 239°, a saturation of 37%, and a value of 100%.

In a RGB color space, #A1A2FE is composed of 63% red, 64% green and 100% blue. Whereas in a CMYK color space, it is composed of 37% cyan, 36% magenta, 0% yellow and 0% black.

In the Yxy color space, this color is represented as Y: 39.84, x: 0.2757, and y: 0.2517.

Color Code #A1A2FE

#A1A2FErgb(161, 162, 254)
HEX
#A1A2FE
RGB
rgb(161, 162, 254)
HSL
hsl(239, 98%, 81%)
HSV
hsv(239, 37%, 100%)
CMYK
37%, 36%, 0%, 0%
XYZ
X: 43.64, Y: 39.84, Z: 74.79
Lab
L: 69.35, a: 15.97, b: -46.38
Name

Shades of Color #A1A2FE

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

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

#A1A2FErgb(161, 162, 254)

About #A1A2FE Color Code

In the HSL color space, this color has a hue angle of 239°, a saturation of 98%, and a lightness of 81%. The HSV representation shows a hue of 239°, a saturation of 37%, and a value of 100%.

  • HEX: #A1A2FE
  • RGB: rgb(161, 162, 254)
  • HSL: hsl(239, 98%, 81%)
  • HSV: hsv(239, 37%, 100%)
  • CMYK: 37.00% cyan, 36.00% magenta, 0.00% yellow, 0.00% black
  • XYZ: 43.64, 39.84, 74.79
  • Yxy: 39.84, 0.2757, 0.2517
  • Hunter Lab: 69.35, 15.97, -46.38
  • CIE-Lab: 69.35, 15.97, -46.38

In the XYZ color space, this color is represented as X: 43.64, Y: 39.84, Z: 74.79. The Yxy representation further refines this as Y: 39.84, x: 0.2757, and y: 0.2517.

In the Hunter Lab color space, this color is represented as L: 69.35, a: 15.97, and b: -46.38. Similarly, in the CIE-Lab color space, it is represented as L: 69.35, a: 15.97, and b: -46.38.

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

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

Analogous Colors of #A1A2FE

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

Split Complementary Colors of #A1A2FE

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

Tetradic Colors of #A1A2FE

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

Monochromatic Colors of #A1A2FE

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

Complementary Color of #A1A2FE

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

/* Using HEX */
body {
  background-color: #a1a2fe;
}
/* Using RGB */
body {
  background-color: rgb(161, 162, 254);
}
/* Using RGB with opacity */
body {
  background-color: rgba(161, 162, 254, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(239, 98%, 81%);
}
/* Text color */
p {
  color: #a1a2fe;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #a1a2fe;
}
/* Border color */
.box {
  border: 4px solid #a1a2fe;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #a1a2fe;
}
Text Shadow Preview
/* Background with text */
div {
  background: #a1a2fe;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#A1A2FE
On Black Background
#A1A2FE
On White Background
#A1A2FE

HTML Examples of #A1A2FE

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

Related Colors of #A1A2FE

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