Random Color Generator

#961bfb Color

Color Codes
Hex Code #961bfb
RGB Code rgb(150, 27, 251)
HSL Code hsl(273, 97%, 55%)

#961bfb Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 27, 251);
   }

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(273, 97%, 55%);
  }

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 #961bfb

RGB Code Hex Code Preview
rgb(150, 27, 251, 10%) #961bfb1a  
rgb(150, 27, 251, 20%) #961bfb33  
rgb(150, 27, 251, 40%) #961bfb4C  
rgb(150, 27, 251, 60%) #961bfb99  
rgb(150, 27, 251, 80%) #961bfbCC  
rgb(150, 27, 251, 100%) #961bfbFF  

Saturated and desaturated colors of #961bfb

HSL Code Preview
hsl(273, 10%, 55%)  
hsl(273, 20%, 55%)  
hsl(273, 40%, 55%)  
hsl(273, 60%, 55%)  
hsl(273, 80%, 55%)  
hsl(273, 100%, 55%)  

#961bfb Color Usage In CSS

 body {
    color: #961bfb;
    }
 p {
    color: rgb(150, 27, 251);
    }
 header {
    border-bottom:1px solid #961bfb;
    }
Recent Random Colors