Random Color Generator

#7554eb Color

Color Codes
Hex Code #7554eb
RGB Code rgb(117, 84, 235)
HSL Code hsl(253, 79%, 63%)

#7554eb Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 84, 235);
   }

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(253, 79%, 63%);
  }

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 #7554eb

RGB Code Hex Code Preview
rgb(117, 84, 235, 10%) #7554eb1a  
rgb(117, 84, 235, 20%) #7554eb33  
rgb(117, 84, 235, 40%) #7554eb4C  
rgb(117, 84, 235, 60%) #7554eb99  
rgb(117, 84, 235, 80%) #7554ebCC  
rgb(117, 84, 235, 100%) #7554ebFF  

Saturated and desaturated colors of #7554eb

HSL Code Preview
hsl(253, 10%, 63%)  
hsl(253, 20%, 63%)  
hsl(253, 40%, 63%)  
hsl(253, 60%, 63%)  
hsl(253, 80%, 63%)  
hsl(253, 100%, 63%)  

#7554eb Color Usage In CSS

 body {
    color: #7554eb;
    }
 p {
    color: rgb(117, 84, 235);
    }
 header {
    border-bottom:1px solid #7554eb;
    }
Recent Random Colors