Random Color Generator

#7574fe Color

Color Codes
Hex Code #7574fe
RGB Code rgb(117, 116, 254)
HSL Code hsl(240, 99%, 73%)

#7574fe Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 116, 254);
   }

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(240, 99%, 73%);
  }

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 #7574fe

RGB Code Hex Code Preview
rgb(117, 116, 254, 10%) #7574fe1a  
rgb(117, 116, 254, 20%) #7574fe33  
rgb(117, 116, 254, 40%) #7574fe4C  
rgb(117, 116, 254, 60%) #7574fe99  
rgb(117, 116, 254, 80%) #7574feCC  
rgb(117, 116, 254, 100%) #7574feFF  

Saturated and desaturated colors of #7574fe

HSL Code Preview
hsl(240, 10%, 73%)  
hsl(240, 20%, 73%)  
hsl(240, 40%, 73%)  
hsl(240, 60%, 73%)  
hsl(240, 80%, 73%)  
hsl(240, 100%, 73%)  

#7574fe Color Usage In CSS

 body {
    color: #7574fe;
    }
 p {
    color: rgb(117, 116, 254);
    }
 header {
    border-bottom:1px solid #7574fe;
    }
Recent Random Colors