Random Color Generator

#818084 Color

Color Codes
Hex Code #818084
RGB Code rgb(129, 128, 132)
HSL Code hsl(255, 2%, 51%)

#818084 Color Syntax

rgb()

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

 main {
    background-color: rgb(129, 128, 132);
   }

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(255, 2%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(129, 128, 132, 10%) #8180841a  
rgb(129, 128, 132, 20%) #81808433  
rgb(129, 128, 132, 40%) #8180844C  
rgb(129, 128, 132, 60%) #81808499  
rgb(129, 128, 132, 80%) #818084CC  
rgb(129, 128, 132, 100%) #818084FF  

Saturated and desaturated colors of #818084

HSL Code Preview
hsl(255, 10%, 51%)  
hsl(255, 20%, 51%)  
hsl(255, 40%, 51%)  
hsl(255, 60%, 51%)  
hsl(255, 80%, 51%)  
hsl(255, 100%, 51%)  

#818084 Color Usage In CSS

 body {
    color: #818084;
    }
 p {
    color: rgb(129, 128, 132);
    }
 header {
    border-bottom:1px solid #818084;
    }
Recent Random Colors