Random Color Generator

#49d955 Color

Color Codes
Hex Code #49d955
RGB Code rgb(73, 217, 85)
HSL Code hsl(125, 65%, 57%)

#49d955 Color Syntax

rgb()

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

 main {
    background-color: rgb(73, 217, 85);
   }

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(125, 65%, 57%);
  }

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 #49d955

RGB Code Hex Code Preview
rgb(73, 217, 85, 10%) #49d9551a  
rgb(73, 217, 85, 20%) #49d95533  
rgb(73, 217, 85, 40%) #49d9554C  
rgb(73, 217, 85, 60%) #49d95599  
rgb(73, 217, 85, 80%) #49d955CC  
rgb(73, 217, 85, 100%) #49d955FF  

Saturated and desaturated colors of #49d955

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

#49d955 Color Usage In CSS

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