Random Color Generator

#9a5477 Color

Color Codes
Hex Code #9a5477
RGB Code rgb(154, 84, 119)
HSL Code hsl(330, 29%, 47%)

#9a5477 Color Syntax

rgb()

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

 main {
    background-color: rgb(154, 84, 119);
   }

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(330, 29%, 47%);
  }

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 #9a5477

RGB Code Hex Code Preview
rgb(154, 84, 119, 10%) #9a54771a  
rgb(154, 84, 119, 20%) #9a547733  
rgb(154, 84, 119, 40%) #9a54774C  
rgb(154, 84, 119, 60%) #9a547799  
rgb(154, 84, 119, 80%) #9a5477CC  
rgb(154, 84, 119, 100%) #9a5477FF  

Saturated and desaturated colors of #9a5477

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

#9a5477 Color Usage In CSS

 body {
    color: #9a5477;
    }
 p {
    color: rgb(154, 84, 119);
    }
 header {
    border-bottom:1px solid #9a5477;
    }
Recent Random Colors