Random Color Generator

#b36d6b Color

Color Codes
Hex Code #b36d6b
RGB Code rgb(179, 109, 107)
HSL Code hsl(2, 32%, 56%)

#b36d6b Color Syntax

rgb()

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

 main {
    background-color: rgb(179, 109, 107);
   }

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(2, 32%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(179, 109, 107, 10%) #b36d6b1a  
rgb(179, 109, 107, 20%) #b36d6b33  
rgb(179, 109, 107, 40%) #b36d6b4C  
rgb(179, 109, 107, 60%) #b36d6b99  
rgb(179, 109, 107, 80%) #b36d6bCC  
rgb(179, 109, 107, 100%) #b36d6bFF  

Saturated and desaturated colors of #b36d6b

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

#b36d6b Color Usage In CSS

 body {
    color: #b36d6b;
    }
 p {
    color: rgb(179, 109, 107);
    }
 header {
    border-bottom:1px solid #b36d6b;
    }
Recent Random Colors