Random Color Generator

#9954f8 Color

Color Codes
Hex Code #9954f8
RGB Code rgb(153, 84, 248)
HSL Code hsl(265, 92%, 65%)

#9954f8 Color Syntax

rgb()

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

 main {
    background-color: rgb(153, 84, 248);
   }

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(265, 92%, 65%);
  }

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 #9954f8

RGB Code Hex Code Preview
rgb(153, 84, 248, 10%) #9954f81a  
rgb(153, 84, 248, 20%) #9954f833  
rgb(153, 84, 248, 40%) #9954f84C  
rgb(153, 84, 248, 60%) #9954f899  
rgb(153, 84, 248, 80%) #9954f8CC  
rgb(153, 84, 248, 100%) #9954f8FF  

Saturated and desaturated colors of #9954f8

HSL Code Preview
hsl(265, 10%, 65%)  
hsl(265, 20%, 65%)  
hsl(265, 40%, 65%)  
hsl(265, 60%, 65%)  
hsl(265, 80%, 65%)  
hsl(265, 100%, 65%)  

#9954f8 Color Usage In CSS

 body {
    color: #9954f8;
    }
 p {
    color: rgb(153, 84, 248);
    }
 header {
    border-bottom:1px solid #9954f8;
    }
Recent Random Colors