Random Color Generator

#bd353e Color

Color Codes
Hex Code #bd353e
RGB Code rgb(189, 53, 62)
HSL Code hsl(356, 56%, 47%)

#bd353e Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 53, 62);
   }

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(356, 56%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(189, 53, 62, 10%) #bd353e1a  
rgb(189, 53, 62, 20%) #bd353e33  
rgb(189, 53, 62, 40%) #bd353e4C  
rgb(189, 53, 62, 60%) #bd353e99  
rgb(189, 53, 62, 80%) #bd353eCC  
rgb(189, 53, 62, 100%) #bd353eFF  

Saturated and desaturated colors of #bd353e

HSL Code Preview
hsl(356, 10%, 47%)  
hsl(356, 20%, 47%)  
hsl(356, 40%, 47%)  
hsl(356, 60%, 47%)  
hsl(356, 80%, 47%)  
hsl(356, 100%, 47%)  

#bd353e Color Usage In CSS

 body {
    color: #bd353e;
    }
 p {
    color: rgb(189, 53, 62);
    }
 header {
    border-bottom:1px solid #bd353e;
    }
Recent Random Colors