Random Color Generator

#b13ffe Color

Color Codes
Hex Code #b13ffe
RGB Code rgb(177, 63, 254)
HSL Code hsl(276, 99%, 62%)

#b13ffe Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 63, 254);
   }

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(276, 99%, 62%);
  }

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 #b13ffe

RGB Code Hex Code Preview
rgb(177, 63, 254, 10%) #b13ffe1a  
rgb(177, 63, 254, 20%) #b13ffe33  
rgb(177, 63, 254, 40%) #b13ffe4C  
rgb(177, 63, 254, 60%) #b13ffe99  
rgb(177, 63, 254, 80%) #b13ffeCC  
rgb(177, 63, 254, 100%) #b13ffeFF  

Saturated and desaturated colors of #b13ffe

HSL Code Preview
hsl(276, 10%, 62%)  
hsl(276, 20%, 62%)  
hsl(276, 40%, 62%)  
hsl(276, 60%, 62%)  
hsl(276, 80%, 62%)  
hsl(276, 100%, 62%)  

#b13ffe Color Usage In CSS

 body {
    color: #b13ffe;
    }
 p {
    color: rgb(177, 63, 254);
    }
 header {
    border-bottom:1px solid #b13ffe;
    }
Recent Random Colors