Random Color Generator

#7db14b Color

Color Codes
Hex Code #7db14b
RGB Code rgb(125, 177, 75)
HSL Code hsl(91, 40%, 49%)

#7db14b Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 177, 75);
   }

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(91, 40%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(125, 177, 75, 10%) #7db14b1a  
rgb(125, 177, 75, 20%) #7db14b33  
rgb(125, 177, 75, 40%) #7db14b4C  
rgb(125, 177, 75, 60%) #7db14b99  
rgb(125, 177, 75, 80%) #7db14bCC  
rgb(125, 177, 75, 100%) #7db14bFF  

Saturated and desaturated colors of #7db14b

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

#7db14b Color Usage In CSS

 body {
    color: #7db14b;
    }
 p {
    color: rgb(125, 177, 75);
    }
 header {
    border-bottom:1px solid #7db14b;
    }
Recent Random Colors