Random Color Generator

#53a300 Color

Color Codes
Hex Code #53a300
RGB Code rgb(83, 163, 00)
HSL Code hsl(89, 100%, 32%)

#53a300 Color Syntax

rgb()

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

 main {
    background-color: rgb(83, 163, 00);
   }

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(89, 100%, 32%);
  }

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 #53a300

RGB Code Hex Code Preview
rgb(83, 163, 00, 10%) #53a3001a  
rgb(83, 163, 00, 20%) #53a30033  
rgb(83, 163, 00, 40%) #53a3004C  
rgb(83, 163, 00, 60%) #53a30099  
rgb(83, 163, 00, 80%) #53a300CC  
rgb(83, 163, 00, 100%) #53a300FF  

Saturated and desaturated colors of #53a300

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

#53a300 Color Usage In CSS

 body {
    color: #53a300;
    }
 p {
    color: rgb(83, 163, 00);
    }
 header {
    border-bottom:1px solid #53a300;
    }
Recent Random Colors