Color: #B2EE1B

#B2EE1B Color Information

#B2EE1B is a light color. The closest websafe version is #B2EE1B. A complement of this color would be #571BEE, perceived brightness is 0.77, and the grayscale version is #858585.

In the HSL color space, this color has a hue angle of 77°,a saturation of 86%, and a lightness of 52%.The HSV representation shows a hue of 77°, a saturation of 89%, and a value of 93%.

In a RGB color space, #B2EE1B is composed of 70% red, 93% green and 11% blue. Whereas in a CMYK color space, it is composed of 25% cyan, 0% magenta, 89% yellow and 7% black.

In the Yxy color space, this color is represented as Y: 71.26, x: 0.3933, and y: 0.5339.

Color Code #B2EE1B

#B2EE1Brgb(178, 238, 27)
HEX
#B2EE1B
RGB
rgb(178, 238, 27)
HSL
hsl(77, 86%, 52%)
HSV
hsv(77, 89%, 93%)
CMYK
25%, 0%, 89%, 7%
XYZ
X: 52.49, Y: 71.26, Z: 9.71
Lab
L: 87.61, a: -38.34, b: 80.65
Name

Shades of Color #B2EE1B

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

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

#B2EE1Brgb(178, 238, 27)

About #B2EE1B Color Code

In the HSL color space, this color has a hue angle of 77°, a saturation of 86%, and a lightness of 52%. The HSV representation shows a hue of 77°, a saturation of 89%, and a value of 93%.

  • HEX: #B2EE1B
  • RGB: rgb(178, 238, 27)
  • HSL: hsl(77, 86%, 52%)
  • HSV: hsv(77, 89%, 93%)
  • CMYK: 25.00% cyan, 0.00% magenta, 89.00% yellow, 7.00% black
  • XYZ: 52.49, 71.26, 9.71
  • Yxy: 71.26, 0.3933, 0.5339
  • Hunter Lab: 87.61, -38.34, 80.65
  • CIE-Lab: 87.61, -38.34, 80.65

In the XYZ color space, this color is represented as X: 52.49, Y: 71.26, Z: 9.71. The Yxy representation further refines this as Y: 71.26, x: 0.3933, and y: 0.5339.

In the Hunter Lab color space, this color is represented as L: 87.61, a: -38.34, and b: 80.65. Similarly, in the CIE-Lab color space, it is represented as L: 87.61, a: -38.34, and b: 80.65.

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

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

Analogous Colors of #B2EE1B

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

Split Complementary Colors of #B2EE1B

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

Tetradic Colors of #B2EE1B

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

Monochromatic Colors of #B2EE1B

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

Complementary Color of #B2EE1B

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

/* Using HEX */
body {
  background-color: #b2ee1b;
}
/* Using RGB */
body {
  background-color: rgb(178, 238, 27);
}
/* Using RGB with opacity */
body {
  background-color: rgba(178, 238, 27, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(77, 86%, 52%);
}
/* Text color */
p {
  color: #b2ee1b;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #b2ee1b;
}
/* Border color */
.box {
  border: 4px solid #b2ee1b;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #b2ee1b;
}
Text Shadow Preview
/* Background with text */
div {
  background: #b2ee1b;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#B2EE1B
On Black Background
#B2EE1B
On White Background
#B2EE1B

HTML Examples of #B2EE1B

<!-- Using HEX -->
<div style="background-color: #b2ee1b; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(178, 238, 27); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(178, 238, 27, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(77, 86%, 52%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #b2ee1b;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #b2ee1b; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #b2ee1b; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #b2ee1b;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #b2ee1b; color: #fff; padding: 16px; border-radius: 8px;">
  #B2EE1B
</div>
#B2EE1B
On Black Background
#B2EE1B
On White Background
#B2EE1B

Related Colors of #B2EE1B

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