Random Color Generator

#725046 Color

Color Codes
Hex Code #725046
RGB Code rgb(114, 80, 70)
HSL Code hsl(14, 24%, 36%)

#725046 Color Syntax

rgb()

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

 main {
    background-color: rgb(114, 80, 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(14, 24%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(114, 80, 70, 10%) #7250461a  
rgb(114, 80, 70, 20%) #72504633  
rgb(114, 80, 70, 40%) #7250464C  
rgb(114, 80, 70, 60%) #72504699  
rgb(114, 80, 70, 80%) #725046CC  
rgb(114, 80, 70, 100%) #725046FF  

Saturated and desaturated colors of #725046

HSL Code Preview
hsl(14, 10%, 36%)  
hsl(14, 20%, 36%)  
hsl(14, 40%, 36%)  
hsl(14, 60%, 36%)  
hsl(14, 80%, 36%)  
hsl(14, 100%, 36%)  

#725046 Color Usage In CSS

 body {
    color: #725046;
    }
 p {
    color: rgb(114, 80, 70);
    }
 header {
    border-bottom:1px solid #725046;
    }
Recent Random Colors