Random Color Generator

#bd5e46 Color

Color Codes
Hex Code #bd5e46
RGB Code rgb(189, 94, 70)
HSL Code hsl(12, 47%, 51%)

#bd5e46 Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 94, 70);
   }

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, 47%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(189, 94, 70, 10%) #bd5e461a  
rgb(189, 94, 70, 20%) #bd5e4633  
rgb(189, 94, 70, 40%) #bd5e464C  
rgb(189, 94, 70, 60%) #bd5e4699  
rgb(189, 94, 70, 80%) #bd5e46CC  
rgb(189, 94, 70, 100%) #bd5e46FF  

Saturated and desaturated colors of #bd5e46

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

#bd5e46 Color Usage In CSS

 body {
    color: #bd5e46;
    }
 p {
    color: rgb(189, 94, 70);
    }
 header {
    border-bottom:1px solid #bd5e46;
    }
Recent Random Colors