Random Color Generator

#b0fb0d Color

Color Codes
Hex Code #b0fb0d
RGB Code rgb(176, 251, 13)
HSL Code hsl(79, 97%, 52%)

#b0fb0d Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(176, 251, 13);
   }

R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.

hsl()

 hsl(hue saturation lightness);
 hsl(hue saturation lightness / alpha);

 div {
  background-color: hsl(79, 97%, 52%);
  }

Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.

Lighter and darker colors of #b0fb0d

RGB Code Hex Code Preview
rgb(176, 251, 13, 10%) #b0fb0d1a  
rgb(176, 251, 13, 20%) #b0fb0d33  
rgb(176, 251, 13, 40%) #b0fb0d4C  
rgb(176, 251, 13, 60%) #b0fb0d99  
rgb(176, 251, 13, 80%) #b0fb0dCC  
rgb(176, 251, 13, 100%) #b0fb0dFF  

Saturated and desaturated colors of #b0fb0d

HSL Code Preview
hsl(79, 10%, 52%)  
hsl(79, 20%, 52%)  
hsl(79, 40%, 52%)  
hsl(79, 60%, 52%)  
hsl(79, 80%, 52%)  
hsl(79, 100%, 52%)  

#b0fb0d Color Usage In CSS

 body {
    color: #b0fb0d;
    }
 p {
    color: rgb(176, 251, 13);
    }
 header {
    border-bottom:1px solid #b0fb0d;
    }
Recent Random Colors