Random Color Generator

#bd3736 Color

Color Codes
Hex Code #bd3736
RGB Code rgb(189, 55, 54)
HSL Code hsl(0, 56%, 48%)

#bd3736 Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 55, 54);
   }

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(0, 56%, 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 #bd3736

RGB Code Hex Code Preview
rgb(189, 55, 54, 10%) #bd37361a  
rgb(189, 55, 54, 20%) #bd373633  
rgb(189, 55, 54, 40%) #bd37364C  
rgb(189, 55, 54, 60%) #bd373699  
rgb(189, 55, 54, 80%) #bd3736CC  
rgb(189, 55, 54, 100%) #bd3736FF  

Saturated and desaturated colors of #bd3736

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

#bd3736 Color Usage In CSS

 body {
    color: #bd3736;
    }
 p {
    color: rgb(189, 55, 54);
    }
 header {
    border-bottom:1px solid #bd3736;
    }
Recent Random Colors