Random Color Generator

#82736f Color

Color Codes
Hex Code #82736f
RGB Code rgb(130, 115, 111)
HSL Code hsl(13, 8%, 47%)

#82736f Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 115, 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, 8%, 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 #82736f

RGB Code Hex Code Preview
rgb(130, 115, 111, 10%) #82736f1a  
rgb(130, 115, 111, 20%) #82736f33  
rgb(130, 115, 111, 40%) #82736f4C  
rgb(130, 115, 111, 60%) #82736f99  
rgb(130, 115, 111, 80%) #82736fCC  
rgb(130, 115, 111, 100%) #82736fFF  

Saturated and desaturated colors of #82736f

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

#82736f Color Usage In CSS

 body {
    color: #82736f;
    }
 p {
    color: rgb(130, 115, 111);
    }
 header {
    border-bottom:1px solid #82736f;
    }
Recent Random Colors