Random Color Generator

#827f80 Color

Color Codes
Hex Code #827f80
RGB Code rgb(130, 127, 128)
HSL Code hsl(340, 1%, 50%)

#827f80 Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 127, 128);
   }

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(340, 1%, 50%);
  }

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 #827f80

RGB Code Hex Code Preview
rgb(130, 127, 128, 10%) #827f801a  
rgb(130, 127, 128, 20%) #827f8033  
rgb(130, 127, 128, 40%) #827f804C  
rgb(130, 127, 128, 60%) #827f8099  
rgb(130, 127, 128, 80%) #827f80CC  
rgb(130, 127, 128, 100%) #827f80FF  

Saturated and desaturated colors of #827f80

HSL Code Preview
hsl(340, 10%, 50%)  
hsl(340, 20%, 50%)  
hsl(340, 40%, 50%)  
hsl(340, 60%, 50%)  
hsl(340, 80%, 50%)  
hsl(340, 100%, 50%)  

#827f80 Color Usage In CSS

 body {
    color: #827f80;
    }
 p {
    color: rgb(130, 127, 128);
    }
 header {
    border-bottom:1px solid #827f80;
    }
Recent Random Colors