Random Color Generator

#b1e686 Color

Color Codes
Hex Code #b1e686
RGB Code rgb(177, 230, 134)
HSL Code hsl(93, 66%, 71%)

#b1e686 Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 230, 134);
   }

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(93, 66%, 71%);
  }

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

RGB Code Hex Code Preview
rgb(177, 230, 134, 10%) #b1e6861a  
rgb(177, 230, 134, 20%) #b1e68633  
rgb(177, 230, 134, 40%) #b1e6864C  
rgb(177, 230, 134, 60%) #b1e68699  
rgb(177, 230, 134, 80%) #b1e686CC  
rgb(177, 230, 134, 100%) #b1e686FF  

Saturated and desaturated colors of #b1e686

HSL Code Preview
hsl(93, 10%, 71%)  
hsl(93, 20%, 71%)  
hsl(93, 40%, 71%)  
hsl(93, 60%, 71%)  
hsl(93, 80%, 71%)  
hsl(93, 100%, 71%)  

#b1e686 Color Usage In CSS

 body {
    color: #b1e686;
    }
 p {
    color: rgb(177, 230, 134);
    }
 header {
    border-bottom:1px solid #b1e686;
    }
Recent Random Colors