Random Color Generator

#9533da Color

Color Codes
Hex Code #9533da
RGB Code rgb(149, 51, 218)
HSL Code hsl(275, 69%, 53%)

#9533da Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 51, 218);
   }

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(275, 69%, 53%);
  }

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 #9533da

RGB Code Hex Code Preview
rgb(149, 51, 218, 10%) #9533da1a  
rgb(149, 51, 218, 20%) #9533da33  
rgb(149, 51, 218, 40%) #9533da4C  
rgb(149, 51, 218, 60%) #9533da99  
rgb(149, 51, 218, 80%) #9533daCC  
rgb(149, 51, 218, 100%) #9533daFF  

Saturated and desaturated colors of #9533da

HSL Code Preview
hsl(275, 10%, 53%)  
hsl(275, 20%, 53%)  
hsl(275, 40%, 53%)  
hsl(275, 60%, 53%)  
hsl(275, 80%, 53%)  
hsl(275, 100%, 53%)  

#9533da Color Usage In CSS

 body {
    color: #9533da;
    }
 p {
    color: rgb(149, 51, 218);
    }
 header {
    border-bottom:1px solid #9533da;
    }
Recent Random Colors