Random Color Generator

#9463dd Color

Color Codes
Hex Code #9463dd
RGB Code rgb(148, 99, 221)
HSL Code hsl(264, 64%, 63%)

#9463dd Color Syntax

rgb()

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

 main {
    background-color: rgb(148, 99, 221);
   }

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(264, 64%, 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 #9463dd

RGB Code Hex Code Preview
rgb(148, 99, 221, 10%) #9463dd1a  
rgb(148, 99, 221, 20%) #9463dd33  
rgb(148, 99, 221, 40%) #9463dd4C  
rgb(148, 99, 221, 60%) #9463dd99  
rgb(148, 99, 221, 80%) #9463ddCC  
rgb(148, 99, 221, 100%) #9463ddFF  

Saturated and desaturated colors of #9463dd

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

#9463dd Color Usage In CSS

 body {
    color: #9463dd;
    }
 p {
    color: rgb(148, 99, 221);
    }
 header {
    border-bottom:1px solid #9463dd;
    }
Recent Random Colors