Random Color Generator

#9077a2 Color

Color Codes
Hex Code #9077a2
RGB Code rgb(144, 119, 162)
HSL Code hsl(275, 19%, 55%)

#9077a2 Color Syntax

rgb()

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

 main {
    background-color: rgb(144, 119, 162);
   }

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(275, 19%, 55%);
  }

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 #9077a2

RGB Code Hex Code Preview
rgb(144, 119, 162, 10%) #9077a21a  
rgb(144, 119, 162, 20%) #9077a233  
rgb(144, 119, 162, 40%) #9077a24C  
rgb(144, 119, 162, 60%) #9077a299  
rgb(144, 119, 162, 80%) #9077a2CC  
rgb(144, 119, 162, 100%) #9077a2FF  

Saturated and desaturated colors of #9077a2

HSL Code Preview
hsl(275, 10%, 55%)  
hsl(275, 20%, 55%)  
hsl(275, 40%, 55%)  
hsl(275, 60%, 55%)  
hsl(275, 80%, 55%)  
hsl(275, 100%, 55%)  

#9077a2 Color Usage In CSS

 body {
    color: #9077a2;
    }
 p {
    color: rgb(144, 119, 162);
    }
 header {
    border-bottom:1px solid #9077a2;
    }
Recent Random Colors