Random Color Generator

#85399f Color

Color Codes
Hex Code #85399f
RGB Code rgb(133, 57, 159)
HSL Code hsl(285, 47%, 42%)

#85399f Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 57, 159);
   }

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(285, 47%, 42%);
  }

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 #85399f

RGB Code Hex Code Preview
rgb(133, 57, 159, 10%) #85399f1a  
rgb(133, 57, 159, 20%) #85399f33  
rgb(133, 57, 159, 40%) #85399f4C  
rgb(133, 57, 159, 60%) #85399f99  
rgb(133, 57, 159, 80%) #85399fCC  
rgb(133, 57, 159, 100%) #85399fFF  

Saturated and desaturated colors of #85399f

HSL Code Preview
hsl(285, 10%, 42%)  
hsl(285, 20%, 42%)  
hsl(285, 40%, 42%)  
hsl(285, 60%, 42%)  
hsl(285, 80%, 42%)  
hsl(285, 100%, 42%)  

#85399f Color Usage In CSS

 body {
    color: #85399f;
    }
 p {
    color: rgb(133, 57, 159);
    }
 header {
    border-bottom:1px solid #85399f;
    }
Recent Random Colors