Random Color Generator

#b10d47 Color

Color Codes
Hex Code #b10d47
RGB Code rgb(177, 13, 71)
HSL Code hsl(339, 86%, 37%)

#b10d47 Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 13, 71);
   }

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(339, 86%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(177, 13, 71, 10%) #b10d471a  
rgb(177, 13, 71, 20%) #b10d4733  
rgb(177, 13, 71, 40%) #b10d474C  
rgb(177, 13, 71, 60%) #b10d4799  
rgb(177, 13, 71, 80%) #b10d47CC  
rgb(177, 13, 71, 100%) #b10d47FF  

Saturated and desaturated colors of #b10d47

HSL Code Preview
hsl(339, 10%, 37%)  
hsl(339, 20%, 37%)  
hsl(339, 40%, 37%)  
hsl(339, 60%, 37%)  
hsl(339, 80%, 37%)  
hsl(339, 100%, 37%)  

#b10d47 Color Usage In CSS

 body {
    color: #b10d47;
    }
 p {
    color: rgb(177, 13, 71);
    }
 header {
    border-bottom:1px solid #b10d47;
    }
Recent Random Colors