Random Color Generator

#9a2dc0 Color

Color Codes
Hex Code #9a2dc0
RGB Code rgb(154, 45, 192)
HSL Code hsl(284, 62%, 46%)

#9a2dc0 Color Syntax

rgb()

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

 main {
    background-color: rgb(154, 45, 192);
   }

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(284, 62%, 46%);
  }

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 #9a2dc0

RGB Code Hex Code Preview
rgb(154, 45, 192, 10%) #9a2dc01a  
rgb(154, 45, 192, 20%) #9a2dc033  
rgb(154, 45, 192, 40%) #9a2dc04C  
rgb(154, 45, 192, 60%) #9a2dc099  
rgb(154, 45, 192, 80%) #9a2dc0CC  
rgb(154, 45, 192, 100%) #9a2dc0FF  

Saturated and desaturated colors of #9a2dc0

HSL Code Preview
hsl(284, 10%, 46%)  
hsl(284, 20%, 46%)  
hsl(284, 40%, 46%)  
hsl(284, 60%, 46%)  
hsl(284, 80%, 46%)  
hsl(284, 100%, 46%)  

#9a2dc0 Color Usage In CSS

 body {
    color: #9a2dc0;
    }
 p {
    color: rgb(154, 45, 192);
    }
 header {
    border-bottom:1px solid #9a2dc0;
    }
Recent Random Colors