Random Color Generator

#b45a75 Color

Color Codes
Hex Code #b45a75
RGB Code rgb(180, 90, 117)
HSL Code hsl(342, 38%, 53%)

#b45a75 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 90, 117);
   }

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(342, 38%, 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 #b45a75

RGB Code Hex Code Preview
rgb(180, 90, 117, 10%) #b45a751a  
rgb(180, 90, 117, 20%) #b45a7533  
rgb(180, 90, 117, 40%) #b45a754C  
rgb(180, 90, 117, 60%) #b45a7599  
rgb(180, 90, 117, 80%) #b45a75CC  
rgb(180, 90, 117, 100%) #b45a75FF  

Saturated and desaturated colors of #b45a75

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

#b45a75 Color Usage In CSS

 body {
    color: #b45a75;
    }
 p {
    color: rgb(180, 90, 117);
    }
 header {
    border-bottom:1px solid #b45a75;
    }
Recent Random Colors