Random Color Generator

#5d75da Color

Color Codes
Hex Code #5d75da
RGB Code rgb(93, 117, 218)
HSL Code hsl(228, 63%, 61%)

#5d75da Color Syntax

rgb()

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

 main {
    background-color: rgb(93, 117, 218);
   }

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(228, 63%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(93, 117, 218, 10%) #5d75da1a  
rgb(93, 117, 218, 20%) #5d75da33  
rgb(93, 117, 218, 40%) #5d75da4C  
rgb(93, 117, 218, 60%) #5d75da99  
rgb(93, 117, 218, 80%) #5d75daCC  
rgb(93, 117, 218, 100%) #5d75daFF  

Saturated and desaturated colors of #5d75da

HSL Code Preview
hsl(228, 10%, 61%)  
hsl(228, 20%, 61%)  
hsl(228, 40%, 61%)  
hsl(228, 60%, 61%)  
hsl(228, 80%, 61%)  
hsl(228, 100%, 61%)  

#5d75da Color Usage In CSS

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