Random Color Generator

#132820 Color

Color Codes
Hex Code #132820
RGB Code rgb(19, 40, 32)
HSL Code hsl(157, 36%, 12%)

#132820 Color Syntax

rgb()

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

 main {
    background-color: rgb(19, 40, 32);
   }

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(157, 36%, 12%);
  }

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 #132820

RGB Code Hex Code Preview
rgb(19, 40, 32, 10%) #1328201a  
rgb(19, 40, 32, 20%) #13282033  
rgb(19, 40, 32, 40%) #1328204C  
rgb(19, 40, 32, 60%) #13282099  
rgb(19, 40, 32, 80%) #132820CC  
rgb(19, 40, 32, 100%) #132820FF  

Saturated and desaturated colors of #132820

HSL Code Preview
hsl(157, 10%, 12%)  
hsl(157, 20%, 12%)  
hsl(157, 40%, 12%)  
hsl(157, 60%, 12%)  
hsl(157, 80%, 12%)  
hsl(157, 100%, 12%)  

#132820 Color Usage In CSS

 body {
    color: #132820;
    }
 p {
    color: rgb(19, 40, 32);
    }
 header {
    border-bottom:1px solid #132820;
    }
Recent Random Colors