Random Color Generator

#4530da Color

Color Codes
Hex Code #4530da
RGB Code rgb(69, 48, 218)
HSL Code hsl(247, 70%, 52%)

#4530da Color Syntax

rgb()

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

 main {
    background-color: rgb(69, 48, 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(247, 70%, 52%);
  }

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 #4530da

RGB Code Hex Code Preview
rgb(69, 48, 218, 10%) #4530da1a  
rgb(69, 48, 218, 20%) #4530da33  
rgb(69, 48, 218, 40%) #4530da4C  
rgb(69, 48, 218, 60%) #4530da99  
rgb(69, 48, 218, 80%) #4530daCC  
rgb(69, 48, 218, 100%) #4530daFF  

Saturated and desaturated colors of #4530da

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

#4530da Color Usage In CSS

 body {
    color: #4530da;
    }
 p {
    color: rgb(69, 48, 218);
    }
 header {
    border-bottom:1px solid #4530da;
    }
Recent Random Colors