Random Color Generator

#725a20 Color

Color Codes
Hex Code #725a20
RGB Code rgb(114, 90, 32)
HSL Code hsl(42, 56%, 29%)

#725a20 Color Syntax

rgb()

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

 main {
    background-color: rgb(114, 90, 32);
   }

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(42, 56%, 29%);
  }

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 #725a20

RGB Code Hex Code Preview
rgb(114, 90, 32, 10%) #725a201a  
rgb(114, 90, 32, 20%) #725a2033  
rgb(114, 90, 32, 40%) #725a204C  
rgb(114, 90, 32, 60%) #725a2099  
rgb(114, 90, 32, 80%) #725a20CC  
rgb(114, 90, 32, 100%) #725a20FF  

Saturated and desaturated colors of #725a20

HSL Code Preview
hsl(42, 10%, 29%)  
hsl(42, 20%, 29%)  
hsl(42, 40%, 29%)  
hsl(42, 60%, 29%)  
hsl(42, 80%, 29%)  
hsl(42, 100%, 29%)  

#725a20 Color Usage In CSS

 body {
    color: #725a20;
    }
 p {
    color: rgb(114, 90, 32);
    }
 header {
    border-bottom:1px solid #725a20;
    }
Recent Random Colors