Color: #BFEB5D

#BFEB5D Color Information

#BFEB5D is a light color. The closest websafe version is #BFEB5D. A complement of this color would be #895CEB, perceived brightness is 0.81, and the grayscale version is #A4A4A4.

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

In a RGB color space, #BFEB5D is composed of 75% red, 92% green and 36% blue. Whereas in a CMYK color space, it is composed of 19% cyan, 0% magenta, 60% yellow and 8% black.

In the Yxy color space, this color is represented as Y: 71.81, x: 0.3889, and y: 0.4963.

Color Code #BFEB5D

#BFEB5Drgb(191, 235, 93)
HEX
#BFEB5D
RGB
rgb(191, 235, 93)
HSL
hsl(79, 78%, 64%)
HSV
hsv(79, 60%, 92%)
CMYK
19%, 0%, 60%, 8%
XYZ
X: 56.28, Y: 71.81, Z: 16.61
Lab
L: 87.88, a: -29.90, b: 61.89
Name

Shades of Color #BFEB5D

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

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

#BFEB5Drgb(191, 235, 93)

About #BFEB5D Color Code

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

  • HEX: #BFEB5D
  • RGB: rgb(191, 235, 93)
  • HSL: hsl(79, 78%, 64%)
  • HSV: hsv(79, 60%, 92%)
  • CMYK: 19.00% cyan, 0.00% magenta, 60.00% yellow, 8.00% black
  • XYZ: 56.28, 71.81, 16.61
  • Yxy: 71.81, 0.3889, 0.4963
  • Hunter Lab: 87.88, -29.90, 61.89
  • CIE-Lab: 87.88, -29.90, 61.89

In the XYZ color space, this color is represented as X: 56.28, Y: 71.81, Z: 16.61. The Yxy representation further refines this as Y: 71.81, x: 0.3889, and y: 0.4963.

In the Hunter Lab color space, this color is represented as L: 87.88, a: -29.90, and b: 61.89. Similarly, in the CIE-Lab color space, it is represented as L: 87.88, a: -29.90, and b: 61.89.

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

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

Analogous Colors of #BFEB5D

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

Split Complementary Colors of #BFEB5D

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

Tetradic Colors of #BFEB5D

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

Monochromatic Colors of #BFEB5D

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

Complementary Color of #BFEB5D

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

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

HTML Examples of #BFEB5D

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

Related Colors of #BFEB5D

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