Random Color Generator

#b67282 Color

Color Codes
Hex Code #b67282
RGB Code rgb(182, 114, 130)
HSL Code hsl(346, 32%, 58%)

#b67282 Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 114, 130);
   }

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(346, 32%, 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 #b67282

RGB Code Hex Code Preview
rgb(182, 114, 130, 10%) #b672821a  
rgb(182, 114, 130, 20%) #b6728233  
rgb(182, 114, 130, 40%) #b672824C  
rgb(182, 114, 130, 60%) #b6728299  
rgb(182, 114, 130, 80%) #b67282CC  
rgb(182, 114, 130, 100%) #b67282FF  

Saturated and desaturated colors of #b67282

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

#b67282 Color Usage In CSS

 body {
    color: #b67282;
    }
 p {
    color: rgb(182, 114, 130);
    }
 header {
    border-bottom:1px solid #b67282;
    }
Recent Random Colors