Random Color Generator

#b6918a Color

Color Codes
Hex Code #b6918a
RGB Code rgb(182, 145, 138)
HSL Code hsl(10, 23%, 63%)

#b6918a Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 145, 138);
   }

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(10, 23%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(182, 145, 138, 10%) #b6918a1a  
rgb(182, 145, 138, 20%) #b6918a33  
rgb(182, 145, 138, 40%) #b6918a4C  
rgb(182, 145, 138, 60%) #b6918a99  
rgb(182, 145, 138, 80%) #b6918aCC  
rgb(182, 145, 138, 100%) #b6918aFF  

Saturated and desaturated colors of #b6918a

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

#b6918a Color Usage In CSS

 body {
    color: #b6918a;
    }
 p {
    color: rgb(182, 145, 138);
    }
 header {
    border-bottom:1px solid #b6918a;
    }
Recent Random Colors