Random Color Generator

#858193 Color

Color Codes
Hex Code #858193
RGB Code rgb(133, 129, 147)
HSL Code hsl(253, 8%, 54%)

#858193 Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 129, 147);
   }

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(253, 8%, 54%);
  }

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 #858193

RGB Code Hex Code Preview
rgb(133, 129, 147, 10%) #8581931a  
rgb(133, 129, 147, 20%) #85819333  
rgb(133, 129, 147, 40%) #8581934C  
rgb(133, 129, 147, 60%) #85819399  
rgb(133, 129, 147, 80%) #858193CC  
rgb(133, 129, 147, 100%) #858193FF  

Saturated and desaturated colors of #858193

HSL Code Preview
hsl(253, 10%, 54%)  
hsl(253, 20%, 54%)  
hsl(253, 40%, 54%)  
hsl(253, 60%, 54%)  
hsl(253, 80%, 54%)  
hsl(253, 100%, 54%)  

#858193 Color Usage In CSS

 body {
    color: #858193;
    }
 p {
    color: rgb(133, 129, 147);
    }
 header {
    border-bottom:1px solid #858193;
    }
Recent Random Colors