Random Color Generator

#bd847c Color

Color Codes
Hex Code #bd847c
RGB Code rgb(189, 132, 124)
HSL Code hsl(7, 33%, 61%)

#bd847c Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 132, 124);
   }

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(7, 33%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(189, 132, 124, 10%) #bd847c1a  
rgb(189, 132, 124, 20%) #bd847c33  
rgb(189, 132, 124, 40%) #bd847c4C  
rgb(189, 132, 124, 60%) #bd847c99  
rgb(189, 132, 124, 80%) #bd847cCC  
rgb(189, 132, 124, 100%) #bd847cFF  

Saturated and desaturated colors of #bd847c

HSL Code Preview
hsl(7, 10%, 61%)  
hsl(7, 20%, 61%)  
hsl(7, 40%, 61%)  
hsl(7, 60%, 61%)  
hsl(7, 80%, 61%)  
hsl(7, 100%, 61%)  

#bd847c Color Usage In CSS

 body {
    color: #bd847c;
    }
 p {
    color: rgb(189, 132, 124);
    }
 header {
    border-bottom:1px solid #bd847c;
    }
Recent Random Colors