Random Color Generator

#b5d680 Color

Color Codes
Hex Code #b5d680
RGB Code rgb(181, 214, 128)
HSL Code hsl(83, 51%, 67%)

#b5d680 Color Syntax

rgb()

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

 main {
    background-color: rgb(181, 214, 128);
   }

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(83, 51%, 67%);
  }

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

RGB Code Hex Code Preview
rgb(181, 214, 128, 10%) #b5d6801a  
rgb(181, 214, 128, 20%) #b5d68033  
rgb(181, 214, 128, 40%) #b5d6804C  
rgb(181, 214, 128, 60%) #b5d68099  
rgb(181, 214, 128, 80%) #b5d680CC  
rgb(181, 214, 128, 100%) #b5d680FF  

Saturated and desaturated colors of #b5d680

HSL Code Preview
hsl(83, 10%, 67%)  
hsl(83, 20%, 67%)  
hsl(83, 40%, 67%)  
hsl(83, 60%, 67%)  
hsl(83, 80%, 67%)  
hsl(83, 100%, 67%)  

#b5d680 Color Usage In CSS

 body {
    color: #b5d680;
    }
 p {
    color: rgb(181, 214, 128);
    }
 header {
    border-bottom:1px solid #b5d680;
    }
Recent Random Colors