Random Color Generator

#b49fe4 Color

Color Codes
Hex Code #b49fe4
RGB Code rgb(180, 159, 228)
HSL Code hsl(258, 56%, 76%)

#b49fe4 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 159, 228);
   }

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, 56%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(180, 159, 228, 10%) #b49fe41a  
rgb(180, 159, 228, 20%) #b49fe433  
rgb(180, 159, 228, 40%) #b49fe44C  
rgb(180, 159, 228, 60%) #b49fe499  
rgb(180, 159, 228, 80%) #b49fe4CC  
rgb(180, 159, 228, 100%) #b49fe4FF  

Saturated and desaturated colors of #b49fe4

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

#b49fe4 Color Usage In CSS

 body {
    color: #b49fe4;
    }
 p {
    color: rgb(180, 159, 228);
    }
 header {
    border-bottom:1px solid #b49fe4;
    }
Recent Random Colors