Random Color Generator

#82218a Color

Color Codes
Hex Code #82218a
RGB Code rgb(130, 33, 138)
HSL Code hsl(295, 61%, 34%)

#82218a Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 33, 138);
   }

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(295, 61%, 34%);
  }

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 #82218a

RGB Code Hex Code Preview
rgb(130, 33, 138, 10%) #82218a1a  
rgb(130, 33, 138, 20%) #82218a33  
rgb(130, 33, 138, 40%) #82218a4C  
rgb(130, 33, 138, 60%) #82218a99  
rgb(130, 33, 138, 80%) #82218aCC  
rgb(130, 33, 138, 100%) #82218aFF  

Saturated and desaturated colors of #82218a

HSL Code Preview
hsl(295, 10%, 34%)  
hsl(295, 20%, 34%)  
hsl(295, 40%, 34%)  
hsl(295, 60%, 34%)  
hsl(295, 80%, 34%)  
hsl(295, 100%, 34%)  

#82218a Color Usage In CSS

 body {
    color: #82218a;
    }
 p {
    color: rgb(130, 33, 138);
    }
 header {
    border-bottom:1px solid #82218a;
    }
Recent Random Colors