Random Color Generator

#b61fda Color

Color Codes
Hex Code #b61fda
RGB Code rgb(182, 31, 218)
HSL Code hsl(288, 75%, 49%)

#b61fda Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 31, 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(288, 75%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(182, 31, 218, 10%) #b61fda1a  
rgb(182, 31, 218, 20%) #b61fda33  
rgb(182, 31, 218, 40%) #b61fda4C  
rgb(182, 31, 218, 60%) #b61fda99  
rgb(182, 31, 218, 80%) #b61fdaCC  
rgb(182, 31, 218, 100%) #b61fdaFF  

Saturated and desaturated colors of #b61fda

HSL Code Preview
hsl(288, 10%, 49%)  
hsl(288, 20%, 49%)  
hsl(288, 40%, 49%)  
hsl(288, 60%, 49%)  
hsl(288, 80%, 49%)  
hsl(288, 100%, 49%)  

#b61fda Color Usage In CSS

 body {
    color: #b61fda;
    }
 p {
    color: rgb(182, 31, 218);
    }
 header {
    border-bottom:1px solid #b61fda;
    }
Recent Random Colors