Random Color Generator

#829082 Color

Color Codes
Hex Code #829082
RGB Code rgb(130, 144, 130)
HSL Code hsl(120, 6%, 54%)

#829082 Color Syntax

rgb()

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

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

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(120, 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 #829082

RGB Code Hex Code Preview
rgb(130, 144, 130, 10%) #8290821a  
rgb(130, 144, 130, 20%) #82908233  
rgb(130, 144, 130, 40%) #8290824C  
rgb(130, 144, 130, 60%) #82908299  
rgb(130, 144, 130, 80%) #829082CC  
rgb(130, 144, 130, 100%) #829082FF  

Saturated and desaturated colors of #829082

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

#829082 Color Usage In CSS

 body {
    color: #829082;
    }
 p {
    color: rgb(130, 144, 130);
    }
 header {
    border-bottom:1px solid #829082;
    }
Recent Random Colors