Random Color Generator

#8c6691 Color

Color Codes
Hex Code #8c6691
RGB Code rgb(140, 102, 145)
HSL Code hsl(293, 17%, 48%)

#8c6691 Color Syntax

rgb()

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

 main {
    background-color: rgb(140, 102, 145);
   }

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, 17%, 48%);
  }

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 #8c6691

RGB Code Hex Code Preview
rgb(140, 102, 145, 10%) #8c66911a  
rgb(140, 102, 145, 20%) #8c669133  
rgb(140, 102, 145, 40%) #8c66914C  
rgb(140, 102, 145, 60%) #8c669199  
rgb(140, 102, 145, 80%) #8c6691CC  
rgb(140, 102, 145, 100%) #8c6691FF  

Saturated and desaturated colors of #8c6691

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

#8c6691 Color Usage In CSS

 body {
    color: #8c6691;
    }
 p {
    color: rgb(140, 102, 145);
    }
 header {
    border-bottom:1px solid #8c6691;
    }
Recent Random Colors