Random Color Generator

#5b85cd Color

Color Codes
Hex Code #5b85cd
RGB Code rgb(91, 133, 205)
HSL Code hsl(218, 53%, 58%)

#5b85cd Color Syntax

rgb()

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

 main {
    background-color: rgb(91, 133, 205);
   }

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(218, 53%, 58%);
  }

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 #5b85cd

RGB Code Hex Code Preview
rgb(91, 133, 205, 10%) #5b85cd1a  
rgb(91, 133, 205, 20%) #5b85cd33  
rgb(91, 133, 205, 40%) #5b85cd4C  
rgb(91, 133, 205, 60%) #5b85cd99  
rgb(91, 133, 205, 80%) #5b85cdCC  
rgb(91, 133, 205, 100%) #5b85cdFF  

Saturated and desaturated colors of #5b85cd

HSL Code Preview
hsl(218, 10%, 58%)  
hsl(218, 20%, 58%)  
hsl(218, 40%, 58%)  
hsl(218, 60%, 58%)  
hsl(218, 80%, 58%)  
hsl(218, 100%, 58%)  

#5b85cd Color Usage In CSS

 body {
    color: #5b85cd;
    }
 p {
    color: rgb(91, 133, 205);
    }
 header {
    border-bottom:1px solid #5b85cd;
    }
Recent Random Colors