Random Color Generator

#7cb01b Color

Color Codes
Hex Code #7cb01b
RGB Code rgb(124, 176, 27)
HSL Code hsl(81, 73%, 40%)

#7cb01b Color Syntax

rgb()

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

 main {
    background-color: rgb(124, 176, 27);
   }

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(81, 73%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(124, 176, 27, 10%) #7cb01b1a  
rgb(124, 176, 27, 20%) #7cb01b33  
rgb(124, 176, 27, 40%) #7cb01b4C  
rgb(124, 176, 27, 60%) #7cb01b99  
rgb(124, 176, 27, 80%) #7cb01bCC  
rgb(124, 176, 27, 100%) #7cb01bFF  

Saturated and desaturated colors of #7cb01b

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

#7cb01b Color Usage In CSS

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