Random Color Generator

#9053f4 Color

Color Codes
Hex Code #9053f4
RGB Code rgb(144, 83, 244)
HSL Code hsl(263, 88%, 64%)

#9053f4 Color Syntax

rgb()

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

 main {
    background-color: rgb(144, 83, 244);
   }

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(263, 88%, 64%);
  }

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 #9053f4

RGB Code Hex Code Preview
rgb(144, 83, 244, 10%) #9053f41a  
rgb(144, 83, 244, 20%) #9053f433  
rgb(144, 83, 244, 40%) #9053f44C  
rgb(144, 83, 244, 60%) #9053f499  
rgb(144, 83, 244, 80%) #9053f4CC  
rgb(144, 83, 244, 100%) #9053f4FF  

Saturated and desaturated colors of #9053f4

HSL Code Preview
hsl(263, 10%, 64%)  
hsl(263, 20%, 64%)  
hsl(263, 40%, 64%)  
hsl(263, 60%, 64%)  
hsl(263, 80%, 64%)  
hsl(263, 100%, 64%)  

#9053f4 Color Usage In CSS

 body {
    color: #9053f4;
    }
 p {
    color: rgb(144, 83, 244);
    }
 header {
    border-bottom:1px solid #9053f4;
    }
Recent Random Colors