Random Color Generator

#961765 Color

Color Codes
Hex Code #961765
RGB Code rgb(150, 23, 101)
HSL Code hsl(323, 73%, 34%)

#961765 Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 23, 101);
   }

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(323, 73%, 34%);
  }

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

RGB Code Hex Code Preview
rgb(150, 23, 101, 10%) #9617651a  
rgb(150, 23, 101, 20%) #96176533  
rgb(150, 23, 101, 40%) #9617654C  
rgb(150, 23, 101, 60%) #96176599  
rgb(150, 23, 101, 80%) #961765CC  
rgb(150, 23, 101, 100%) #961765FF  

Saturated and desaturated colors of #961765

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

#961765 Color Usage In CSS

 body {
    color: #961765;
    }
 p {
    color: rgb(150, 23, 101);
    }
 header {
    border-bottom:1px solid #961765;
    }
Recent Random Colors