Random Color Generator

#855c71 Color

Color Codes
Hex Code #855c71
RGB Code rgb(133, 92, 113)
HSL Code hsl(329, 18%, 44%)

#855c71 Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 92, 113);
   }

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(329, 18%, 44%);
  }

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 #855c71

RGB Code Hex Code Preview
rgb(133, 92, 113, 10%) #855c711a  
rgb(133, 92, 113, 20%) #855c7133  
rgb(133, 92, 113, 40%) #855c714C  
rgb(133, 92, 113, 60%) #855c7199  
rgb(133, 92, 113, 80%) #855c71CC  
rgb(133, 92, 113, 100%) #855c71FF  

Saturated and desaturated colors of #855c71

HSL Code Preview
hsl(329, 10%, 44%)  
hsl(329, 20%, 44%)  
hsl(329, 40%, 44%)  
hsl(329, 60%, 44%)  
hsl(329, 80%, 44%)  
hsl(329, 100%, 44%)  

#855c71 Color Usage In CSS

 body {
    color: #855c71;
    }
 p {
    color: rgb(133, 92, 113);
    }
 header {
    border-bottom:1px solid #855c71;
    }
Recent Random Colors