Random Color Generator

#49b16a Color

Color Codes
Hex Code #49b16a
RGB Code rgb(73, 177, 106)
HSL Code hsl(139, 42%, 49%)

#49b16a Color Syntax

rgb()

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

 main {
    background-color: rgb(73, 177, 106);
   }

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(139, 42%, 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 #49b16a

RGB Code Hex Code Preview
rgb(73, 177, 106, 10%) #49b16a1a  
rgb(73, 177, 106, 20%) #49b16a33  
rgb(73, 177, 106, 40%) #49b16a4C  
rgb(73, 177, 106, 60%) #49b16a99  
rgb(73, 177, 106, 80%) #49b16aCC  
rgb(73, 177, 106, 100%) #49b16aFF  

Saturated and desaturated colors of #49b16a

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

#49b16a Color Usage In CSS

 body {
    color: #49b16a;
    }
 p {
    color: rgb(73, 177, 106);
    }
 header {
    border-bottom:1px solid #49b16a;
    }
Recent Random Colors