Random Color Generator

#4938cd Color

Color Codes
Hex Code #4938cd
RGB Code rgb(73, 56, 205)
HSL Code hsl(247, 60%, 51%)

#4938cd Color Syntax

rgb()

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

 main {
    background-color: rgb(73, 56, 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(247, 60%, 51%);
  }

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 #4938cd

RGB Code Hex Code Preview
rgb(73, 56, 205, 10%) #4938cd1a  
rgb(73, 56, 205, 20%) #4938cd33  
rgb(73, 56, 205, 40%) #4938cd4C  
rgb(73, 56, 205, 60%) #4938cd99  
rgb(73, 56, 205, 80%) #4938cdCC  
rgb(73, 56, 205, 100%) #4938cdFF  

Saturated and desaturated colors of #4938cd

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

#4938cd Color Usage In CSS

 body {
    color: #4938cd;
    }
 p {
    color: rgb(73, 56, 205);
    }
 header {
    border-bottom:1px solid #4938cd;
    }
Recent Random Colors