Random Color Generator

#b1fd0b Color

Color Codes
Hex Code #b1fd0b
RGB Code rgb(177, 253, 11)
HSL Code hsl(79, 98%, 52%)

#b1fd0b Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 253, 11);
   }

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, 98%, 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 #b1fd0b

RGB Code Hex Code Preview
rgb(177, 253, 11, 10%) #b1fd0b1a  
rgb(177, 253, 11, 20%) #b1fd0b33  
rgb(177, 253, 11, 40%) #b1fd0b4C  
rgb(177, 253, 11, 60%) #b1fd0b99  
rgb(177, 253, 11, 80%) #b1fd0bCC  
rgb(177, 253, 11, 100%) #b1fd0bFF  

Saturated and desaturated colors of #b1fd0b

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%)  

#b1fd0b Color Usage In CSS

 body {
    color: #b1fd0b;
    }
 p {
    color: rgb(177, 253, 11);
    }
 header {
    border-bottom:1px solid #b1fd0b;
    }
Recent Random Colors