Random Color Generator

#b48a8d Color

Color Codes
Hex Code #b48a8d
RGB Code rgb(180, 138, 141)
HSL Code hsl(356, 22%, 62%)

#b48a8d Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 138, 141);
   }

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(356, 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 #b48a8d

RGB Code Hex Code Preview
rgb(180, 138, 141, 10%) #b48a8d1a  
rgb(180, 138, 141, 20%) #b48a8d33  
rgb(180, 138, 141, 40%) #b48a8d4C  
rgb(180, 138, 141, 60%) #b48a8d99  
rgb(180, 138, 141, 80%) #b48a8dCC  
rgb(180, 138, 141, 100%) #b48a8dFF  

Saturated and desaturated colors of #b48a8d

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

#b48a8d Color Usage In CSS

 body {
    color: #b48a8d;
    }
 p {
    color: rgb(180, 138, 141);
    }
 header {
    border-bottom:1px solid #b48a8d;
    }
Recent Random Colors