Random Color Generator

#b44959 Color

Color Codes
Hex Code #b44959
RGB Code rgb(180, 73, 89)
HSL Code hsl(351, 42%, 50%)

#b44959 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 73, 89);
   }

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(351, 42%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(180, 73, 89, 10%) #b449591a  
rgb(180, 73, 89, 20%) #b4495933  
rgb(180, 73, 89, 40%) #b449594C  
rgb(180, 73, 89, 60%) #b4495999  
rgb(180, 73, 89, 80%) #b44959CC  
rgb(180, 73, 89, 100%) #b44959FF  

Saturated and desaturated colors of #b44959

HSL Code Preview
hsl(351, 10%, 50%)  
hsl(351, 20%, 50%)  
hsl(351, 40%, 50%)  
hsl(351, 60%, 50%)  
hsl(351, 80%, 50%)  
hsl(351, 100%, 50%)  

#b44959 Color Usage In CSS

 body {
    color: #b44959;
    }
 p {
    color: rgb(180, 73, 89);
    }
 header {
    border-bottom:1px solid #b44959;
    }
Recent Random Colors