Random Color Generator

#3a322c Color

Color Codes
Hex Code #3a322c
RGB Code rgb(58, 50, 44)
HSL Code hsl(26, 14%, 20%)

#3a322c Color Syntax

rgb()

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

 main {
    background-color: rgb(58, 50, 44);
   }

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(26, 14%, 20%);
  }

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 #3a322c

RGB Code Hex Code Preview
rgb(58, 50, 44, 10%) #3a322c1a  
rgb(58, 50, 44, 20%) #3a322c33  
rgb(58, 50, 44, 40%) #3a322c4C  
rgb(58, 50, 44, 60%) #3a322c99  
rgb(58, 50, 44, 80%) #3a322cCC  
rgb(58, 50, 44, 100%) #3a322cFF  

Saturated and desaturated colors of #3a322c

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

#3a322c Color Usage In CSS

 body {
    color: #3a322c;
    }
 p {
    color: rgb(58, 50, 44);
    }
 header {
    border-bottom:1px solid #3a322c;
    }
Recent Random Colors