Random Color Generator

#997ca7 Color

Color Codes
Hex Code #997ca7
RGB Code rgb(153, 124, 167)
HSL Code hsl(280, 20%, 57%)

#997ca7 Color Syntax

rgb()

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

 main {
    background-color: rgb(153, 124, 167);
   }

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(280, 20%, 57%);
  }

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 #997ca7

RGB Code Hex Code Preview
rgb(153, 124, 167, 10%) #997ca71a  
rgb(153, 124, 167, 20%) #997ca733  
rgb(153, 124, 167, 40%) #997ca74C  
rgb(153, 124, 167, 60%) #997ca799  
rgb(153, 124, 167, 80%) #997ca7CC  
rgb(153, 124, 167, 100%) #997ca7FF  

Saturated and desaturated colors of #997ca7

HSL Code Preview
hsl(280, 10%, 57%)  
hsl(280, 20%, 57%)  
hsl(280, 40%, 57%)  
hsl(280, 60%, 57%)  
hsl(280, 80%, 57%)  
hsl(280, 100%, 57%)  

#997ca7 Color Usage In CSS

 body {
    color: #997ca7;
    }
 p {
    color: rgb(153, 124, 167);
    }
 header {
    border-bottom:1px solid #997ca7;
    }
Recent Random Colors