Random Color Generator

#8a6c85 Color

Color Codes
Hex Code #8a6c85
RGB Code rgb(138, 108, 133)
HSL Code hsl(310, 12%, 48%)

#8a6c85 Color Syntax

rgb()

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

 main {
    background-color: rgb(138, 108, 133);
   }

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(310, 12%, 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 #8a6c85

RGB Code Hex Code Preview
rgb(138, 108, 133, 10%) #8a6c851a  
rgb(138, 108, 133, 20%) #8a6c8533  
rgb(138, 108, 133, 40%) #8a6c854C  
rgb(138, 108, 133, 60%) #8a6c8599  
rgb(138, 108, 133, 80%) #8a6c85CC  
rgb(138, 108, 133, 100%) #8a6c85FF  

Saturated and desaturated colors of #8a6c85

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

#8a6c85 Color Usage In CSS

 body {
    color: #8a6c85;
    }
 p {
    color: rgb(138, 108, 133);
    }
 header {
    border-bottom:1px solid #8a6c85;
    }
Recent Random Colors