Random Color Generator

#9742fe Color

Color Codes
Hex Code #9742fe
RGB Code rgb(151, 66, 254)
HSL Code hsl(267, 99%, 63%)

#9742fe Color Syntax

rgb()

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

 main {
    background-color: rgb(151, 66, 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(267, 99%, 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 #9742fe

RGB Code Hex Code Preview
rgb(151, 66, 254, 10%) #9742fe1a  
rgb(151, 66, 254, 20%) #9742fe33  
rgb(151, 66, 254, 40%) #9742fe4C  
rgb(151, 66, 254, 60%) #9742fe99  
rgb(151, 66, 254, 80%) #9742feCC  
rgb(151, 66, 254, 100%) #9742feFF  

Saturated and desaturated colors of #9742fe

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

#9742fe Color Usage In CSS

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