Random Color Generator

#b0f55e Color

Color Codes
Hex Code #b0f55e
RGB Code rgb(176, 245, 94)
HSL Code hsl(87, 88%, 66%)

#b0f55e Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 245, 94);
   }

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(87, 88%, 66%);
  }

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

RGB Code Hex Code Preview
rgb(176, 245, 94, 10%) #b0f55e1a  
rgb(176, 245, 94, 20%) #b0f55e33  
rgb(176, 245, 94, 40%) #b0f55e4C  
rgb(176, 245, 94, 60%) #b0f55e99  
rgb(176, 245, 94, 80%) #b0f55eCC  
rgb(176, 245, 94, 100%) #b0f55eFF  

Saturated and desaturated colors of #b0f55e

HSL Code Preview
hsl(87, 10%, 66%)  
hsl(87, 20%, 66%)  
hsl(87, 40%, 66%)  
hsl(87, 60%, 66%)  
hsl(87, 80%, 66%)  
hsl(87, 100%, 66%)  

#b0f55e Color Usage In CSS

 body {
    color: #b0f55e;
    }
 p {
    color: rgb(176, 245, 94);
    }
 header {
    border-bottom:1px solid #b0f55e;
    }
Recent Random Colors