Random Color Generator

#a88b4b Color

Color Codes
Hex Code #a88b4b
RGB Code rgb(168, 139, 75)
HSL Code hsl(41, 38%, 48%)

#a88b4b Color Syntax

rgb()

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

 main {
    background-color: rgb(168, 139, 75);
   }

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(41, 38%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(168, 139, 75, 10%) #a88b4b1a  
rgb(168, 139, 75, 20%) #a88b4b33  
rgb(168, 139, 75, 40%) #a88b4b4C  
rgb(168, 139, 75, 60%) #a88b4b99  
rgb(168, 139, 75, 80%) #a88b4bCC  
rgb(168, 139, 75, 100%) #a88b4bFF  

Saturated and desaturated colors of #a88b4b

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

#a88b4b Color Usage In CSS

 body {
    color: #a88b4b;
    }
 p {
    color: rgb(168, 139, 75);
    }
 header {
    border-bottom:1px solid #a88b4b;
    }
Recent Random Colors