Random Color Generator

#bd7232 Color

Color Codes
Hex Code #bd7232
RGB Code rgb(189, 114, 50)
HSL Code hsl(28, 58%, 47%)

#bd7232 Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 114, 50);
   }

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(28, 58%, 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 #bd7232

RGB Code Hex Code Preview
rgb(189, 114, 50, 10%) #bd72321a  
rgb(189, 114, 50, 20%) #bd723233  
rgb(189, 114, 50, 40%) #bd72324C  
rgb(189, 114, 50, 60%) #bd723299  
rgb(189, 114, 50, 80%) #bd7232CC  
rgb(189, 114, 50, 100%) #bd7232FF  

Saturated and desaturated colors of #bd7232

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

#bd7232 Color Usage In CSS

 body {
    color: #bd7232;
    }
 p {
    color: rgb(189, 114, 50);
    }
 header {
    border-bottom:1px solid #bd7232;
    }
Recent Random Colors