Random Color Generator

#e15bfb Color

Color Codes
Hex Code #e15bfb
RGB Code rgb(225, 91, 251)
HSL Code hsl(290, 95%, 67%)

#e15bfb Color Syntax

rgb()

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

 main {
    background-color: rgb(225, 91, 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(290, 95%, 67%);
  }

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

RGB Code Hex Code Preview
rgb(225, 91, 251, 10%) #e15bfb1a  
rgb(225, 91, 251, 20%) #e15bfb33  
rgb(225, 91, 251, 40%) #e15bfb4C  
rgb(225, 91, 251, 60%) #e15bfb99  
rgb(225, 91, 251, 80%) #e15bfbCC  
rgb(225, 91, 251, 100%) #e15bfbFF  

Saturated and desaturated colors of #e15bfb

HSL Code Preview
hsl(290, 10%, 67%)  
hsl(290, 20%, 67%)  
hsl(290, 40%, 67%)  
hsl(290, 60%, 67%)  
hsl(290, 80%, 67%)  
hsl(290, 100%, 67%)  

#e15bfb Color Usage In CSS

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