Random Color Generator

#b7563d Color

Color Codes
Hex Code #b7563d
RGB Code rgb(183, 86, 61)
HSL Code hsl(12, 50%, 48%)

#b7563d Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 86, 61);
   }

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(12, 50%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(183, 86, 61, 10%) #b7563d1a  
rgb(183, 86, 61, 20%) #b7563d33  
rgb(183, 86, 61, 40%) #b7563d4C  
rgb(183, 86, 61, 60%) #b7563d99  
rgb(183, 86, 61, 80%) #b7563dCC  
rgb(183, 86, 61, 100%) #b7563dFF  

Saturated and desaturated colors of #b7563d

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

#b7563d Color Usage In CSS

 body {
    color: #b7563d;
    }
 p {
    color: rgb(183, 86, 61);
    }
 header {
    border-bottom:1px solid #b7563d;
    }
Recent Random Colors