Random Color Generator

#b77bd1 Color

Color Codes
Hex Code #b77bd1
RGB Code rgb(183, 123, 209)
HSL Code hsl(282, 48%, 65%)

#b77bd1 Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 123, 209);
   }

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(282, 48%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(183, 123, 209, 10%) #b77bd11a  
rgb(183, 123, 209, 20%) #b77bd133  
rgb(183, 123, 209, 40%) #b77bd14C  
rgb(183, 123, 209, 60%) #b77bd199  
rgb(183, 123, 209, 80%) #b77bd1CC  
rgb(183, 123, 209, 100%) #b77bd1FF  

Saturated and desaturated colors of #b77bd1

HSL Code Preview
hsl(282, 10%, 65%)  
hsl(282, 20%, 65%)  
hsl(282, 40%, 65%)  
hsl(282, 60%, 65%)  
hsl(282, 80%, 65%)  
hsl(282, 100%, 65%)  

#b77bd1 Color Usage In CSS

 body {
    color: #b77bd1;
    }
 p {
    color: rgb(183, 123, 209);
    }
 header {
    border-bottom:1px solid #b77bd1;
    }
Recent Random Colors