Random Color Generator

#9b6284 Color

Color Codes
Hex Code #9b6284
RGB Code rgb(155, 98, 132)
HSL Code hsl(324, 23%, 50%)

#9b6284 Color Syntax

rgb()

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

 main {
    background-color: rgb(155, 98, 132);
   }

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(324, 23%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(155, 98, 132, 10%) #9b62841a  
rgb(155, 98, 132, 20%) #9b628433  
rgb(155, 98, 132, 40%) #9b62844C  
rgb(155, 98, 132, 60%) #9b628499  
rgb(155, 98, 132, 80%) #9b6284CC  
rgb(155, 98, 132, 100%) #9b6284FF  

Saturated and desaturated colors of #9b6284

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

#9b6284 Color Usage In CSS

 body {
    color: #9b6284;
    }
 p {
    color: rgb(155, 98, 132);
    }
 header {
    border-bottom:1px solid #9b6284;
    }
Recent Random Colors