Random Color Generator

#b7e38a Color

Color Codes
Hex Code #b7e38a
RGB Code rgb(183, 227, 138)
HSL Code hsl(90, 61%, 72%)

#b7e38a Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 227, 138);
   }

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(90, 61%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(183, 227, 138, 10%) #b7e38a1a  
rgb(183, 227, 138, 20%) #b7e38a33  
rgb(183, 227, 138, 40%) #b7e38a4C  
rgb(183, 227, 138, 60%) #b7e38a99  
rgb(183, 227, 138, 80%) #b7e38aCC  
rgb(183, 227, 138, 100%) #b7e38aFF  

Saturated and desaturated colors of #b7e38a

HSL Code Preview
hsl(90, 10%, 72%)  
hsl(90, 20%, 72%)  
hsl(90, 40%, 72%)  
hsl(90, 60%, 72%)  
hsl(90, 80%, 72%)  
hsl(90, 100%, 72%)  

#b7e38a Color Usage In CSS

 body {
    color: #b7e38a;
    }
 p {
    color: rgb(183, 227, 138);
    }
 header {
    border-bottom:1px solid #b7e38a;
    }
Recent Random Colors