Random Color Generator

#754cea Color

Color Codes
Hex Code #754cea
RGB Code rgb(117, 76, 234)
HSL Code hsl(256, 79%, 61%)

#754cea Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 76, 234);
   }

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(256, 79%, 61%);
  }

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 #754cea

RGB Code Hex Code Preview
rgb(117, 76, 234, 10%) #754cea1a  
rgb(117, 76, 234, 20%) #754cea33  
rgb(117, 76, 234, 40%) #754cea4C  
rgb(117, 76, 234, 60%) #754cea99  
rgb(117, 76, 234, 80%) #754ceaCC  
rgb(117, 76, 234, 100%) #754ceaFF  

Saturated and desaturated colors of #754cea

HSL Code Preview
hsl(256, 10%, 61%)  
hsl(256, 20%, 61%)  
hsl(256, 40%, 61%)  
hsl(256, 60%, 61%)  
hsl(256, 80%, 61%)  
hsl(256, 100%, 61%)  

#754cea Color Usage In CSS

 body {
    color: #754cea;
    }
 p {
    color: rgb(117, 76, 234);
    }
 header {
    border-bottom:1px solid #754cea;
    }
Recent Random Colors