Random Color Generator

#994fab Color

Color Codes
Hex Code #994fab
RGB Code rgb(153, 79, 171)
HSL Code hsl(288, 37%, 49%)

#994fab Color Syntax

rgb()

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

 main {
    background-color: rgb(153, 79, 171);
   }

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(288, 37%, 49%);
  }

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 #994fab

RGB Code Hex Code Preview
rgb(153, 79, 171, 10%) #994fab1a  
rgb(153, 79, 171, 20%) #994fab33  
rgb(153, 79, 171, 40%) #994fab4C  
rgb(153, 79, 171, 60%) #994fab99  
rgb(153, 79, 171, 80%) #994fabCC  
rgb(153, 79, 171, 100%) #994fabFF  

Saturated and desaturated colors of #994fab

HSL Code Preview
hsl(288, 10%, 49%)  
hsl(288, 20%, 49%)  
hsl(288, 40%, 49%)  
hsl(288, 60%, 49%)  
hsl(288, 80%, 49%)  
hsl(288, 100%, 49%)  

#994fab Color Usage In CSS

 body {
    color: #994fab;
    }
 p {
    color: rgb(153, 79, 171);
    }
 header {
    border-bottom:1px solid #994fab;
    }
Recent Random Colors