Random Color Generator

#e48beb Color

Color Codes
Hex Code #e48beb
RGB Code rgb(228, 139, 235)
HSL Code hsl(296, 71%, 73%)

#e48beb Color Syntax

rgb()

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

 main {
    background-color: rgb(228, 139, 235);
   }

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(296, 71%, 73%);
  }

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

RGB Code Hex Code Preview
rgb(228, 139, 235, 10%) #e48beb1a  
rgb(228, 139, 235, 20%) #e48beb33  
rgb(228, 139, 235, 40%) #e48beb4C  
rgb(228, 139, 235, 60%) #e48beb99  
rgb(228, 139, 235, 80%) #e48bebCC  
rgb(228, 139, 235, 100%) #e48bebFF  

Saturated and desaturated colors of #e48beb

HSL Code Preview
hsl(296, 10%, 73%)  
hsl(296, 20%, 73%)  
hsl(296, 40%, 73%)  
hsl(296, 60%, 73%)  
hsl(296, 80%, 73%)  
hsl(296, 100%, 73%)  

#e48beb Color Usage In CSS

 body {
    color: #e48beb;
    }
 p {
    color: rgb(228, 139, 235);
    }
 header {
    border-bottom:1px solid #e48beb;
    }
Recent Random Colors