Random Color Generator

#484efc Color

Color Codes
Hex Code #484efc
RGB Code rgb(72, 78, 252)
HSL Code hsl(238, 97%, 64%)

#484efc Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 78, 252);
   }

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(238, 97%, 64%);
  }

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 #484efc

RGB Code Hex Code Preview
rgb(72, 78, 252, 10%) #484efc1a  
rgb(72, 78, 252, 20%) #484efc33  
rgb(72, 78, 252, 40%) #484efc4C  
rgb(72, 78, 252, 60%) #484efc99  
rgb(72, 78, 252, 80%) #484efcCC  
rgb(72, 78, 252, 100%) #484efcFF  

Saturated and desaturated colors of #484efc

HSL Code Preview
hsl(238, 10%, 64%)  
hsl(238, 20%, 64%)  
hsl(238, 40%, 64%)  
hsl(238, 60%, 64%)  
hsl(238, 80%, 64%)  
hsl(238, 100%, 64%)  

#484efc Color Usage In CSS

 body {
    color: #484efc;
    }
 p {
    color: rgb(72, 78, 252);
    }
 header {
    border-bottom:1px solid #484efc;
    }
Recent Random Colors