Random Color Generator

#b1fc5e Color

Color Codes
Hex Code #b1fc5e
RGB Code rgb(177, 252, 94)
HSL Code hsl(88, 96%, 68%)

#b1fc5e Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 252, 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(88, 96%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(177, 252, 94, 10%) #b1fc5e1a  
rgb(177, 252, 94, 20%) #b1fc5e33  
rgb(177, 252, 94, 40%) #b1fc5e4C  
rgb(177, 252, 94, 60%) #b1fc5e99  
rgb(177, 252, 94, 80%) #b1fc5eCC  
rgb(177, 252, 94, 100%) #b1fc5eFF  

Saturated and desaturated colors of #b1fc5e

HSL Code Preview
hsl(88, 10%, 68%)  
hsl(88, 20%, 68%)  
hsl(88, 40%, 68%)  
hsl(88, 60%, 68%)  
hsl(88, 80%, 68%)  
hsl(88, 100%, 68%)  

#b1fc5e Color Usage In CSS

 body {
    color: #b1fc5e;
    }
 p {
    color: rgb(177, 252, 94);
    }
 header {
    border-bottom:1px solid #b1fc5e;
    }
Recent Random Colors