Random Color Generator

#5da1cc Color

Color Codes
Hex Code #5da1cc
RGB Code rgb(93, 161, 204)
HSL Code hsl(203, 52%, 58%)

#5da1cc Color Syntax

rgb()

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

 main {
    background-color: rgb(93, 161, 204);
   }

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(203, 52%, 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 #5da1cc

RGB Code Hex Code Preview
rgb(93, 161, 204, 10%) #5da1cc1a  
rgb(93, 161, 204, 20%) #5da1cc33  
rgb(93, 161, 204, 40%) #5da1cc4C  
rgb(93, 161, 204, 60%) #5da1cc99  
rgb(93, 161, 204, 80%) #5da1ccCC  
rgb(93, 161, 204, 100%) #5da1ccFF  

Saturated and desaturated colors of #5da1cc

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

#5da1cc Color Usage In CSS

 body {
    color: #5da1cc;
    }
 p {
    color: rgb(93, 161, 204);
    }
 header {
    border-bottom:1px solid #5da1cc;
    }
Recent Random Colors