Random Color Generator

#b47385 Color

Color Codes
Hex Code #b47385
RGB Code rgb(180, 115, 133)
HSL Code hsl(343, 30%, 58%)

#b47385 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 115, 133);
   }

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(343, 30%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(180, 115, 133, 10%) #b473851a  
rgb(180, 115, 133, 20%) #b4738533  
rgb(180, 115, 133, 40%) #b473854C  
rgb(180, 115, 133, 60%) #b4738599  
rgb(180, 115, 133, 80%) #b47385CC  
rgb(180, 115, 133, 100%) #b47385FF  

Saturated and desaturated colors of #b47385

HSL Code Preview
hsl(343, 10%, 58%)  
hsl(343, 20%, 58%)  
hsl(343, 40%, 58%)  
hsl(343, 60%, 58%)  
hsl(343, 80%, 58%)  
hsl(343, 100%, 58%)  

#b47385 Color Usage In CSS

 body {
    color: #b47385;
    }
 p {
    color: rgb(180, 115, 133);
    }
 header {
    border-bottom:1px solid #b47385;
    }
Recent Random Colors