Random Color Generator

#857dc6 Color

Color Codes
Hex Code #857dc6
RGB Code rgb(133, 125, 198)
HSL Code hsl(247, 39%, 63%)

#857dc6 Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 125, 198);
   }

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(247, 39%, 63%);
  }

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 #857dc6

RGB Code Hex Code Preview
rgb(133, 125, 198, 10%) #857dc61a  
rgb(133, 125, 198, 20%) #857dc633  
rgb(133, 125, 198, 40%) #857dc64C  
rgb(133, 125, 198, 60%) #857dc699  
rgb(133, 125, 198, 80%) #857dc6CC  
rgb(133, 125, 198, 100%) #857dc6FF  

Saturated and desaturated colors of #857dc6

HSL Code Preview
hsl(247, 10%, 63%)  
hsl(247, 20%, 63%)  
hsl(247, 40%, 63%)  
hsl(247, 60%, 63%)  
hsl(247, 80%, 63%)  
hsl(247, 100%, 63%)  

#857dc6 Color Usage In CSS

 body {
    color: #857dc6;
    }
 p {
    color: rgb(133, 125, 198);
    }
 header {
    border-bottom:1px solid #857dc6;
    }
Recent Random Colors