Random Color Generator

#b9605c Color

Color Codes
Hex Code #b9605c
RGB Code rgb(185, 96, 92)
HSL Code hsl(3, 40%, 54%)

#b9605c Color Syntax

rgb()

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

 main {
    background-color: rgb(185, 96, 92);
   }

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(3, 40%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(185, 96, 92, 10%) #b9605c1a  
rgb(185, 96, 92, 20%) #b9605c33  
rgb(185, 96, 92, 40%) #b9605c4C  
rgb(185, 96, 92, 60%) #b9605c99  
rgb(185, 96, 92, 80%) #b9605cCC  
rgb(185, 96, 92, 100%) #b9605cFF  

Saturated and desaturated colors of #b9605c

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

#b9605c Color Usage In CSS

 body {
    color: #b9605c;
    }
 p {
    color: rgb(185, 96, 92);
    }
 header {
    border-bottom:1px solid #b9605c;
    }
Recent Random Colors