Random Color Generator

#96310a Color

Color Codes
Hex Code #96310a
RGB Code rgb(150, 49, 10)
HSL Code hsl(17, 88%, 31%)

#96310a Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 49, 10);
   }

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(17, 88%, 31%);
  }

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

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

Saturated and desaturated colors of #96310a

HSL Code Preview
hsl(17, 10%, 31%)  
hsl(17, 20%, 31%)  
hsl(17, 40%, 31%)  
hsl(17, 60%, 31%)  
hsl(17, 80%, 31%)  
hsl(17, 100%, 31%)  

#96310a Color Usage In CSS

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