Random Color Generator

#b996a4 Color

Color Codes
Hex Code #b996a4
RGB Code rgb(185, 150, 164)
HSL Code hsl(336, 20%, 66%)

#b996a4 Color Syntax

rgb()

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

 main {
    background-color: rgb(185, 150, 164);
   }

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(336, 20%, 66%);
  }

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

RGB Code Hex Code Preview
rgb(185, 150, 164, 10%) #b996a41a  
rgb(185, 150, 164, 20%) #b996a433  
rgb(185, 150, 164, 40%) #b996a44C  
rgb(185, 150, 164, 60%) #b996a499  
rgb(185, 150, 164, 80%) #b996a4CC  
rgb(185, 150, 164, 100%) #b996a4FF  

Saturated and desaturated colors of #b996a4

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

#b996a4 Color Usage In CSS

 body {
    color: #b996a4;
    }
 p {
    color: rgb(185, 150, 164);
    }
 header {
    border-bottom:1px solid #b996a4;
    }
Recent Random Colors