Random Color Generator

#52b744 Color

Color Codes
Hex Code #52b744
RGB Code rgb(82, 183, 68)
HSL Code hsl(113, 46%, 49%)

#52b744 Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 183, 68);
   }

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(113, 46%, 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 #52b744

RGB Code Hex Code Preview
rgb(82, 183, 68, 10%) #52b7441a  
rgb(82, 183, 68, 20%) #52b74433  
rgb(82, 183, 68, 40%) #52b7444C  
rgb(82, 183, 68, 60%) #52b74499  
rgb(82, 183, 68, 80%) #52b744CC  
rgb(82, 183, 68, 100%) #52b744FF  

Saturated and desaturated colors of #52b744

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

#52b744 Color Usage In CSS

 body {
    color: #52b744;
    }
 p {
    color: rgb(82, 183, 68);
    }
 header {
    border-bottom:1px solid #52b744;
    }
Recent Random Colors