Random Color Generator

#7cbd51 Color

Color Codes
Hex Code #7cbd51
RGB Code rgb(124, 189, 81)
HSL Code hsl(96, 45%, 53%)

#7cbd51 Color Syntax

rgb()

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

 main {
    background-color: rgb(124, 189, 81);
   }

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(96, 45%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(124, 189, 81, 10%) #7cbd511a  
rgb(124, 189, 81, 20%) #7cbd5133  
rgb(124, 189, 81, 40%) #7cbd514C  
rgb(124, 189, 81, 60%) #7cbd5199  
rgb(124, 189, 81, 80%) #7cbd51CC  
rgb(124, 189, 81, 100%) #7cbd51FF  

Saturated and desaturated colors of #7cbd51

HSL Code Preview
hsl(96, 10%, 53%)  
hsl(96, 20%, 53%)  
hsl(96, 40%, 53%)  
hsl(96, 60%, 53%)  
hsl(96, 80%, 53%)  
hsl(96, 100%, 53%)  

#7cbd51 Color Usage In CSS

 body {
    color: #7cbd51;
    }
 p {
    color: rgb(124, 189, 81);
    }
 header {
    border-bottom:1px solid #7cbd51;
    }
Recent Random Colors