Random Color Generator

#b37aa9 Color

Color Codes
Hex Code #b37aa9
RGB Code rgb(179, 122, 169)
HSL Code hsl(311, 27%, 59%)

#b37aa9 Color Syntax

rgb()

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

 main {
    background-color: rgb(179, 122, 169);
   }

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(311, 27%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(179, 122, 169, 10%) #b37aa91a  
rgb(179, 122, 169, 20%) #b37aa933  
rgb(179, 122, 169, 40%) #b37aa94C  
rgb(179, 122, 169, 60%) #b37aa999  
rgb(179, 122, 169, 80%) #b37aa9CC  
rgb(179, 122, 169, 100%) #b37aa9FF  

Saturated and desaturated colors of #b37aa9

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

#b37aa9 Color Usage In CSS

 body {
    color: #b37aa9;
    }
 p {
    color: rgb(179, 122, 169);
    }
 header {
    border-bottom:1px solid #b37aa9;
    }
Recent Random Colors