Random Color Generator

#372101 Color

Color Codes
Hex Code #372101
RGB Code rgb(55, 33, 01)
HSL Code hsl(36, 96%, 11%)

#372101 Color Syntax

rgb()

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

 main {
    background-color: rgb(55, 33, 01);
   }

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(36, 96%, 11%);
  }

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

RGB Code Hex Code Preview
rgb(55, 33, 01, 10%) #3721011a  
rgb(55, 33, 01, 20%) #37210133  
rgb(55, 33, 01, 40%) #3721014C  
rgb(55, 33, 01, 60%) #37210199  
rgb(55, 33, 01, 80%) #372101CC  
rgb(55, 33, 01, 100%) #372101FF  

Saturated and desaturated colors of #372101

HSL Code Preview
hsl(36, 10%, 11%)  
hsl(36, 20%, 11%)  
hsl(36, 40%, 11%)  
hsl(36, 60%, 11%)  
hsl(36, 80%, 11%)  
hsl(36, 100%, 11%)  

#372101 Color Usage In CSS

 body {
    color: #372101;
    }
 p {
    color: rgb(55, 33, 01);
    }
 header {
    border-bottom:1px solid #372101;
    }
Recent Random Colors