Random Color Generator

#85334a Color

Color Codes
Hex Code #85334a
RGB Code rgb(133, 51, 74)
HSL Code hsl(343, 45%, 36%)

#85334a Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 51, 74);
   }

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(343, 45%, 36%);
  }

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 #85334a

RGB Code Hex Code Preview
rgb(133, 51, 74, 10%) #85334a1a  
rgb(133, 51, 74, 20%) #85334a33  
rgb(133, 51, 74, 40%) #85334a4C  
rgb(133, 51, 74, 60%) #85334a99  
rgb(133, 51, 74, 80%) #85334aCC  
rgb(133, 51, 74, 100%) #85334aFF  

Saturated and desaturated colors of #85334a

HSL Code Preview
hsl(343, 10%, 36%)  
hsl(343, 20%, 36%)  
hsl(343, 40%, 36%)  
hsl(343, 60%, 36%)  
hsl(343, 80%, 36%)  
hsl(343, 100%, 36%)  

#85334a Color Usage In CSS

 body {
    color: #85334a;
    }
 p {
    color: rgb(133, 51, 74);
    }
 header {
    border-bottom:1px solid #85334a;
    }
Recent Random Colors