Random Color Generator

#a28831 Color

Color Codes
Hex Code #a28831
RGB Code rgb(162, 136, 49)
HSL Code hsl(46, 54%, 41%)

#a28831 Color Syntax

rgb()

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

 main {
    background-color: rgb(162, 136, 49);
   }

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(46, 54%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(162, 136, 49, 10%) #a288311a  
rgb(162, 136, 49, 20%) #a2883133  
rgb(162, 136, 49, 40%) #a288314C  
rgb(162, 136, 49, 60%) #a2883199  
rgb(162, 136, 49, 80%) #a28831CC  
rgb(162, 136, 49, 100%) #a28831FF  

Saturated and desaturated colors of #a28831

HSL Code Preview
hsl(46, 10%, 41%)  
hsl(46, 20%, 41%)  
hsl(46, 40%, 41%)  
hsl(46, 60%, 41%)  
hsl(46, 80%, 41%)  
hsl(46, 100%, 41%)  

#a28831 Color Usage In CSS

 body {
    color: #a28831;
    }
 p {
    color: rgb(162, 136, 49);
    }
 header {
    border-bottom:1px solid #a28831;
    }
Recent Random Colors