Random Color Generator

#82918f Color

Color Codes
Hex Code #82918f
RGB Code rgb(130, 145, 143)
HSL Code hsl(172, 6%, 54%)

#82918f Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 145, 143);
   }

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(172, 6%, 54%);
  }

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 #82918f

RGB Code Hex Code Preview
rgb(130, 145, 143, 10%) #82918f1a  
rgb(130, 145, 143, 20%) #82918f33  
rgb(130, 145, 143, 40%) #82918f4C  
rgb(130, 145, 143, 60%) #82918f99  
rgb(130, 145, 143, 80%) #82918fCC  
rgb(130, 145, 143, 100%) #82918fFF  

Saturated and desaturated colors of #82918f

HSL Code Preview
hsl(172, 10%, 54%)  
hsl(172, 20%, 54%)  
hsl(172, 40%, 54%)  
hsl(172, 60%, 54%)  
hsl(172, 80%, 54%)  
hsl(172, 100%, 54%)  

#82918f Color Usage In CSS

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