Random Color Generator

#20320e Color

Color Codes
Hex Code #20320e
RGB Code rgb(32, 50, 14)
HSL Code hsl(90, 56%, 13%)

#20320e Color Syntax

rgb()

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

 main {
    background-color: rgb(32, 50, 14);
   }

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(90, 56%, 13%);
  }

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 #20320e

RGB Code Hex Code Preview
rgb(32, 50, 14, 10%) #20320e1a  
rgb(32, 50, 14, 20%) #20320e33  
rgb(32, 50, 14, 40%) #20320e4C  
rgb(32, 50, 14, 60%) #20320e99  
rgb(32, 50, 14, 80%) #20320eCC  
rgb(32, 50, 14, 100%) #20320eFF  

Saturated and desaturated colors of #20320e

HSL Code Preview
hsl(90, 10%, 13%)  
hsl(90, 20%, 13%)  
hsl(90, 40%, 13%)  
hsl(90, 60%, 13%)  
hsl(90, 80%, 13%)  
hsl(90, 100%, 13%)  

#20320e Color Usage In CSS

 body {
    color: #20320e;
    }
 p {
    color: rgb(32, 50, 14);
    }
 header {
    border-bottom:1px solid #20320e;
    }
Recent Random Colors