Random Color Generator

#977bbd Color

Color Codes
Hex Code #977bbd
RGB Code rgb(151, 123, 189)
HSL Code hsl(265, 33%, 61%)

#977bbd Color Syntax

rgb()

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

 main {
    background-color: rgb(151, 123, 189);
   }

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(265, 33%, 61%);
  }

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 #977bbd

RGB Code Hex Code Preview
rgb(151, 123, 189, 10%) #977bbd1a  
rgb(151, 123, 189, 20%) #977bbd33  
rgb(151, 123, 189, 40%) #977bbd4C  
rgb(151, 123, 189, 60%) #977bbd99  
rgb(151, 123, 189, 80%) #977bbdCC  
rgb(151, 123, 189, 100%) #977bbdFF  

Saturated and desaturated colors of #977bbd

HSL Code Preview
hsl(265, 10%, 61%)  
hsl(265, 20%, 61%)  
hsl(265, 40%, 61%)  
hsl(265, 60%, 61%)  
hsl(265, 80%, 61%)  
hsl(265, 100%, 61%)  

#977bbd Color Usage In CSS

 body {
    color: #977bbd;
    }
 p {
    color: rgb(151, 123, 189);
    }
 header {
    border-bottom:1px solid #977bbd;
    }
Recent Random Colors