Random Color Generator

#3b3616 Color

Color Codes
Hex Code #3b3616
RGB Code rgb(59, 54, 22)
HSL Code hsl(52, 46%, 16%)

#3b3616 Color Syntax

rgb()

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

 main {
    background-color: rgb(59, 54, 22);
   }

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(52, 46%, 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 #3b3616

RGB Code Hex Code Preview
rgb(59, 54, 22, 10%) #3b36161a  
rgb(59, 54, 22, 20%) #3b361633  
rgb(59, 54, 22, 40%) #3b36164C  
rgb(59, 54, 22, 60%) #3b361699  
rgb(59, 54, 22, 80%) #3b3616CC  
rgb(59, 54, 22, 100%) #3b3616FF  

Saturated and desaturated colors of #3b3616

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

#3b3616 Color Usage In CSS

 body {
    color: #3b3616;
    }
 p {
    color: rgb(59, 54, 22);
    }
 header {
    border-bottom:1px solid #3b3616;
    }
Recent Random Colors