Random Color Generator

#961328 Color

Color Codes
Hex Code #961328
RGB Code rgb(150, 19, 40)
HSL Code hsl(350, 78%, 33%)

#961328 Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 19, 40);
   }

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(350, 78%, 33%);
  }

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

RGB Code Hex Code Preview
rgb(150, 19, 40, 10%) #9613281a  
rgb(150, 19, 40, 20%) #96132833  
rgb(150, 19, 40, 40%) #9613284C  
rgb(150, 19, 40, 60%) #96132899  
rgb(150, 19, 40, 80%) #961328CC  
rgb(150, 19, 40, 100%) #961328FF  

Saturated and desaturated colors of #961328

HSL Code Preview
hsl(350, 10%, 33%)  
hsl(350, 20%, 33%)  
hsl(350, 40%, 33%)  
hsl(350, 60%, 33%)  
hsl(350, 80%, 33%)  
hsl(350, 100%, 33%)  

#961328 Color Usage In CSS

 body {
    color: #961328;
    }
 p {
    color: rgb(150, 19, 40);
    }
 header {
    border-bottom:1px solid #961328;
    }
Recent Random Colors