Random Color Generator

#b4a989 Color

Color Codes
Hex Code #b4a989
RGB Code rgb(180, 169, 137)
HSL Code hsl(45, 22%, 62%)

#b4a989 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 169, 137);
   }

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(45, 22%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(180, 169, 137, 10%) #b4a9891a  
rgb(180, 169, 137, 20%) #b4a98933  
rgb(180, 169, 137, 40%) #b4a9894C  
rgb(180, 169, 137, 60%) #b4a98999  
rgb(180, 169, 137, 80%) #b4a989CC  
rgb(180, 169, 137, 100%) #b4a989FF  

Saturated and desaturated colors of #b4a989

HSL Code Preview
hsl(45, 10%, 62%)  
hsl(45, 20%, 62%)  
hsl(45, 40%, 62%)  
hsl(45, 60%, 62%)  
hsl(45, 80%, 62%)  
hsl(45, 100%, 62%)  

#b4a989 Color Usage In CSS

 body {
    color: #b4a989;
    }
 p {
    color: rgb(180, 169, 137);
    }
 header {
    border-bottom:1px solid #b4a989;
    }
Recent Random Colors