Random Color Generator

#b8106a Color

Color Codes
Hex Code #b8106a
RGB Code rgb(184, 16, 106)
HSL Code hsl(328, 84%, 39%)

#b8106a Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 16, 106);
   }

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(328, 84%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(184, 16, 106, 10%) #b8106a1a  
rgb(184, 16, 106, 20%) #b8106a33  
rgb(184, 16, 106, 40%) #b8106a4C  
rgb(184, 16, 106, 60%) #b8106a99  
rgb(184, 16, 106, 80%) #b8106aCC  
rgb(184, 16, 106, 100%) #b8106aFF  

Saturated and desaturated colors of #b8106a

HSL Code Preview
hsl(328, 10%, 39%)  
hsl(328, 20%, 39%)  
hsl(328, 40%, 39%)  
hsl(328, 60%, 39%)  
hsl(328, 80%, 39%)  
hsl(328, 100%, 39%)  

#b8106a Color Usage In CSS

 body {
    color: #b8106a;
    }
 p {
    color: rgb(184, 16, 106);
    }
 header {
    border-bottom:1px solid #b8106a;
    }
Recent Random Colors