Random Color Generator

#371b29 Color

Color Codes
Hex Code #371b29
RGB Code rgb(55, 27, 41)
HSL Code hsl(330, 34%, 16%)

#371b29 Color Syntax

rgb()

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

 main {
    background-color: rgb(55, 27, 41);
   }

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(330, 34%, 16%);
  }

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 #371b29

RGB Code Hex Code Preview
rgb(55, 27, 41, 10%) #371b291a  
rgb(55, 27, 41, 20%) #371b2933  
rgb(55, 27, 41, 40%) #371b294C  
rgb(55, 27, 41, 60%) #371b2999  
rgb(55, 27, 41, 80%) #371b29CC  
rgb(55, 27, 41, 100%) #371b29FF  

Saturated and desaturated colors of #371b29

HSL Code Preview
hsl(330, 10%, 16%)  
hsl(330, 20%, 16%)  
hsl(330, 40%, 16%)  
hsl(330, 60%, 16%)  
hsl(330, 80%, 16%)  
hsl(330, 100%, 16%)  

#371b29 Color Usage In CSS

 body {
    color: #371b29;
    }
 p {
    color: rgb(55, 27, 41);
    }
 header {
    border-bottom:1px solid #371b29;
    }
Recent Random Colors