Random Color Generator

#998129 Color

Color Codes
Hex Code #998129
RGB Code rgb(153, 129, 41)
HSL Code hsl(47, 58%, 38%)

#998129 Color Syntax

rgb()

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

 main {
    background-color: rgb(153, 129, 41);
   }

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(47, 58%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(153, 129, 41, 10%) #9981291a  
rgb(153, 129, 41, 20%) #99812933  
rgb(153, 129, 41, 40%) #9981294C  
rgb(153, 129, 41, 60%) #99812999  
rgb(153, 129, 41, 80%) #998129CC  
rgb(153, 129, 41, 100%) #998129FF  

Saturated and desaturated colors of #998129

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

#998129 Color Usage In CSS

 body {
    color: #998129;
    }
 p {
    color: rgb(153, 129, 41);
    }
 header {
    border-bottom:1px solid #998129;
    }
Recent Random Colors