Random Color Generator

#96464a Color

Color Codes
Hex Code #96464a
RGB Code rgb(150, 70, 74)
HSL Code hsl(357, 36%, 43%)

#96464a Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 70, 74);
   }

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(357, 36%, 43%);
  }

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 #96464a

RGB Code Hex Code Preview
rgb(150, 70, 74, 10%) #96464a1a  
rgb(150, 70, 74, 20%) #96464a33  
rgb(150, 70, 74, 40%) #96464a4C  
rgb(150, 70, 74, 60%) #96464a99  
rgb(150, 70, 74, 80%) #96464aCC  
rgb(150, 70, 74, 100%) #96464aFF  

Saturated and desaturated colors of #96464a

HSL Code Preview
hsl(357, 10%, 43%)  
hsl(357, 20%, 43%)  
hsl(357, 40%, 43%)  
hsl(357, 60%, 43%)  
hsl(357, 80%, 43%)  
hsl(357, 100%, 43%)  

#96464a Color Usage In CSS

 body {
    color: #96464a;
    }
 p {
    color: rgb(150, 70, 74);
    }
 header {
    border-bottom:1px solid #96464a;
    }
Recent Random Colors