Color: #BBCB4C

#BBCB4C Color Information

#BBCB4C is a light color. The closest websafe version is #BBCB4C. A complement of this color would be #5E4DCB, perceived brightness is 0.72, and the grayscale version is #8C8C8C.

In the HSL color space, this color has a hue angle of 68°,a saturation of 55%, and a lightness of 55%.The HSV representation shows a hue of 68°, a saturation of 63%, and a value of 80%.

In a RGB color space, #BBCB4C is composed of 73% red, 80% green and 30% blue. Whereas in a CMYK color space, it is composed of 8% cyan, 0% magenta, 63% yellow and 20% black.

In the Yxy color space, this color is represented as Y: 54.31, x: 0.4093, and y: 0.4864.

Color Code #BBCB4C

#BBCB4Crgb(187, 203, 76)
HEX
#BBCB4C
RGB
rgb(187, 203, 76)
HSL
hsl(68, 55%, 55%)
HSV
hsv(68, 63%, 80%)
CMYK
8%, 0%, 63%, 20%
XYZ
X: 45.70, Y: 54.31, Z: 11.65
Lab
L: 78.64, a: -18.10, b: 59.02
Name

Shades of Color #BBCB4C

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

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

#BBCB4Crgb(187, 203, 76)

About #BBCB4C Color Code

In the HSL color space, this color has a hue angle of 68°, a saturation of 55%, and a lightness of 55%. The HSV representation shows a hue of 68°, a saturation of 63%, and a value of 80%.

  • HEX: #BBCB4C
  • RGB: rgb(187, 203, 76)
  • HSL: hsl(68, 55%, 55%)
  • HSV: hsv(68, 63%, 80%)
  • CMYK: 8.00% cyan, 0.00% magenta, 63.00% yellow, 20.00% black
  • XYZ: 45.70, 54.31, 11.65
  • Yxy: 54.31, 0.4093, 0.4864
  • Hunter Lab: 78.64, -18.10, 59.02
  • CIE-Lab: 78.64, -18.10, 59.02

In the XYZ color space, this color is represented as X: 45.70, Y: 54.31, Z: 11.65. The Yxy representation further refines this as Y: 54.31, x: 0.4093, and y: 0.4864.

In the Hunter Lab color space, this color is represented as L: 78.64, a: -18.10, and b: 59.02. Similarly, in the CIE-Lab color space, it is represented as L: 78.64, a: -18.10, and b: 59.02.

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

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

Analogous Colors of #BBCB4C

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

Split Complementary Colors of #BBCB4C

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

Tetradic Colors of #BBCB4C

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

Monochromatic Colors of #BBCB4C

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

Complementary Color of #BBCB4C

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

/* Using HEX */
body {
  background-color: #bbcb4c;
}
/* Using RGB */
body {
  background-color: rgb(187, 203, 76);
}
/* Using RGB with opacity */
body {
  background-color: rgba(187, 203, 76, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(68, 55%, 55%);
}
/* Text color */
p {
  color: #bbcb4c;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #bbcb4c;
}
/* Border color */
.box {
  border: 4px solid #bbcb4c;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #bbcb4c;
}
Text Shadow Preview
/* Background with text */
div {
  background: #bbcb4c;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#BBCB4C
On Black Background
#BBCB4C
On White Background
#BBCB4C

HTML Examples of #BBCB4C

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

Related Colors of #BBCB4C

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