Random Color Generator

#b49e75 Color

Color Codes
Hex Code #b49e75
RGB Code rgb(180, 158, 117)
HSL Code hsl(39, 30%, 58%)

#b49e75 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 158, 117);
   }

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(39, 30%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(180, 158, 117, 10%) #b49e751a  
rgb(180, 158, 117, 20%) #b49e7533  
rgb(180, 158, 117, 40%) #b49e754C  
rgb(180, 158, 117, 60%) #b49e7599  
rgb(180, 158, 117, 80%) #b49e75CC  
rgb(180, 158, 117, 100%) #b49e75FF  

Saturated and desaturated colors of #b49e75

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

#b49e75 Color Usage In CSS

 body {
    color: #b49e75;
    }
 p {
    color: rgb(180, 158, 117);
    }
 header {
    border-bottom:1px solid #b49e75;
    }
Recent Random Colors