Random Color Generator

#9a60c0 Color

Color Codes
Hex Code #9a60c0
RGB Code rgb(154, 96, 192)
HSL Code hsl(276, 43%, 56%)

#9a60c0 Color Syntax

rgb()

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

 main {
    background-color: rgb(154, 96, 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(276, 43%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(154, 96, 192, 10%) #9a60c01a  
rgb(154, 96, 192, 20%) #9a60c033  
rgb(154, 96, 192, 40%) #9a60c04C  
rgb(154, 96, 192, 60%) #9a60c099  
rgb(154, 96, 192, 80%) #9a60c0CC  
rgb(154, 96, 192, 100%) #9a60c0FF  

Saturated and desaturated colors of #9a60c0

HSL Code Preview
hsl(276, 10%, 56%)  
hsl(276, 20%, 56%)  
hsl(276, 40%, 56%)  
hsl(276, 60%, 56%)  
hsl(276, 80%, 56%)  
hsl(276, 100%, 56%)  

#9a60c0 Color Usage In CSS

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