Random Color Generator

#82238b Color

Color Codes
Hex Code #82238b
RGB Code rgb(130, 35, 139)
HSL Code hsl(295, 60%, 34%)

#82238b Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 35, 139);
   }

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, 60%, 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 #82238b

RGB Code Hex Code Preview
rgb(130, 35, 139, 10%) #82238b1a  
rgb(130, 35, 139, 20%) #82238b33  
rgb(130, 35, 139, 40%) #82238b4C  
rgb(130, 35, 139, 60%) #82238b99  
rgb(130, 35, 139, 80%) #82238bCC  
rgb(130, 35, 139, 100%) #82238bFF  

Saturated and desaturated colors of #82238b

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%)  

#82238b Color Usage In CSS

 body {
    color: #82238b;
    }
 p {
    color: rgb(130, 35, 139);
    }
 header {
    border-bottom:1px solid #82238b;
    }
Recent Random Colors