Random Color Generator

#82174d Color

Color Codes
Hex Code #82174d
RGB Code rgb(130, 23, 77)
HSL Code hsl(330, 70%, 30%)

#82174d Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 23, 77);
   }

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(330, 70%, 30%);
  }

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 #82174d

RGB Code Hex Code Preview
rgb(130, 23, 77, 10%) #82174d1a  
rgb(130, 23, 77, 20%) #82174d33  
rgb(130, 23, 77, 40%) #82174d4C  
rgb(130, 23, 77, 60%) #82174d99  
rgb(130, 23, 77, 80%) #82174dCC  
rgb(130, 23, 77, 100%) #82174dFF  

Saturated and desaturated colors of #82174d

HSL Code Preview
hsl(330, 10%, 30%)  
hsl(330, 20%, 30%)  
hsl(330, 40%, 30%)  
hsl(330, 60%, 30%)  
hsl(330, 80%, 30%)  
hsl(330, 100%, 30%)  

#82174d Color Usage In CSS

 body {
    color: #82174d;
    }
 p {
    color: rgb(130, 23, 77);
    }
 header {
    border-bottom:1px solid #82174d;
    }
Recent Random Colors