Random Color Generator

#9a55a3 Color

Color Codes
Hex Code #9a55a3
RGB Code rgb(154, 85, 163)
HSL Code hsl(293, 31%, 49%)

#9a55a3 Color Syntax

rgb()

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

 main {
    background-color: rgb(154, 85, 163);
   }

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(293, 31%, 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 #9a55a3

RGB Code Hex Code Preview
rgb(154, 85, 163, 10%) #9a55a31a  
rgb(154, 85, 163, 20%) #9a55a333  
rgb(154, 85, 163, 40%) #9a55a34C  
rgb(154, 85, 163, 60%) #9a55a399  
rgb(154, 85, 163, 80%) #9a55a3CC  
rgb(154, 85, 163, 100%) #9a55a3FF  

Saturated and desaturated colors of #9a55a3

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

#9a55a3 Color Usage In CSS

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