Random Color Generator

#963ed4 Color

Color Codes
Hex Code #963ed4
RGB Code rgb(150, 62, 212)
HSL Code hsl(275, 64%, 54%)

#963ed4 Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 62, 212);
   }

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, 64%, 54%);
  }

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 #963ed4

RGB Code Hex Code Preview
rgb(150, 62, 212, 10%) #963ed41a  
rgb(150, 62, 212, 20%) #963ed433  
rgb(150, 62, 212, 40%) #963ed44C  
rgb(150, 62, 212, 60%) #963ed499  
rgb(150, 62, 212, 80%) #963ed4CC  
rgb(150, 62, 212, 100%) #963ed4FF  

Saturated and desaturated colors of #963ed4

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

#963ed4 Color Usage In CSS

 body {
    color: #963ed4;
    }
 p {
    color: rgb(150, 62, 212);
    }
 header {
    border-bottom:1px solid #963ed4;
    }
Recent Random Colors