Random Color Generator

#b15f8e Color

Color Codes
Hex Code #b15f8e
RGB Code rgb(177, 95, 142)
HSL Code hsl(326, 34%, 53%)

#b15f8e Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 95, 142);
   }

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(326, 34%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(177, 95, 142, 10%) #b15f8e1a  
rgb(177, 95, 142, 20%) #b15f8e33  
rgb(177, 95, 142, 40%) #b15f8e4C  
rgb(177, 95, 142, 60%) #b15f8e99  
rgb(177, 95, 142, 80%) #b15f8eCC  
rgb(177, 95, 142, 100%) #b15f8eFF  

Saturated and desaturated colors of #b15f8e

HSL Code Preview
hsl(326, 10%, 53%)  
hsl(326, 20%, 53%)  
hsl(326, 40%, 53%)  
hsl(326, 60%, 53%)  
hsl(326, 80%, 53%)  
hsl(326, 100%, 53%)  

#b15f8e Color Usage In CSS

 body {
    color: #b15f8e;
    }
 p {
    color: rgb(177, 95, 142);
    }
 header {
    border-bottom:1px solid #b15f8e;
    }
Recent Random Colors