Random Color Generator

#bf5a73 Color

Color Codes
Hex Code #bf5a73
RGB Code rgb(191, 90, 115)
HSL Code hsl(345, 44%, 55%)

#bf5a73 Color Syntax

rgb()

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

 main {
    background-color: rgb(191, 90, 115);
   }

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(345, 44%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(191, 90, 115, 10%) #bf5a731a  
rgb(191, 90, 115, 20%) #bf5a7333  
rgb(191, 90, 115, 40%) #bf5a734C  
rgb(191, 90, 115, 60%) #bf5a7399  
rgb(191, 90, 115, 80%) #bf5a73CC  
rgb(191, 90, 115, 100%) #bf5a73FF  

Saturated and desaturated colors of #bf5a73

HSL Code Preview
hsl(345, 10%, 55%)  
hsl(345, 20%, 55%)  
hsl(345, 40%, 55%)  
hsl(345, 60%, 55%)  
hsl(345, 80%, 55%)  
hsl(345, 100%, 55%)  

#bf5a73 Color Usage In CSS

 body {
    color: #bf5a73;
    }
 p {
    color: rgb(191, 90, 115);
    }
 header {
    border-bottom:1px solid #bf5a73;
    }
Recent Random Colors