Random Color Generator

#5b16fb Color

Color Codes
Hex Code #5b16fb
RGB Code rgb(91, 22, 251)
HSL Code hsl(258, 97%, 54%)

#5b16fb Color Syntax

rgb()

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

 main {
    background-color: rgb(91, 22, 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(258, 97%, 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 #5b16fb

RGB Code Hex Code Preview
rgb(91, 22, 251, 10%) #5b16fb1a  
rgb(91, 22, 251, 20%) #5b16fb33  
rgb(91, 22, 251, 40%) #5b16fb4C  
rgb(91, 22, 251, 60%) #5b16fb99  
rgb(91, 22, 251, 80%) #5b16fbCC  
rgb(91, 22, 251, 100%) #5b16fbFF  

Saturated and desaturated colors of #5b16fb

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

#5b16fb Color Usage In CSS

 body {
    color: #5b16fb;
    }
 p {
    color: rgb(91, 22, 251);
    }
 header {
    border-bottom:1px solid #5b16fb;
    }
Recent Random Colors