Random Color Generator

#7d726f Color

Color Codes
Hex Code #7d726f
RGB Code rgb(125, 114, 111)
HSL Code hsl(13, 6%, 46%)

#7d726f Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 114, 111);
   }

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(13, 6%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(125, 114, 111, 10%) #7d726f1a  
rgb(125, 114, 111, 20%) #7d726f33  
rgb(125, 114, 111, 40%) #7d726f4C  
rgb(125, 114, 111, 60%) #7d726f99  
rgb(125, 114, 111, 80%) #7d726fCC  
rgb(125, 114, 111, 100%) #7d726fFF  

Saturated and desaturated colors of #7d726f

HSL Code Preview
hsl(13, 10%, 46%)  
hsl(13, 20%, 46%)  
hsl(13, 40%, 46%)  
hsl(13, 60%, 46%)  
hsl(13, 80%, 46%)  
hsl(13, 100%, 46%)  

#7d726f Color Usage In CSS

 body {
    color: #7d726f;
    }
 p {
    color: rgb(125, 114, 111);
    }
 header {
    border-bottom:1px solid #7d726f;
    }
Recent Random Colors