Random Color Generator

#53265c Color

Color Codes
Hex Code #53265c
RGB Code rgb(83, 38, 92)
HSL Code hsl(290, 42%, 25%)

#53265c Color Syntax

rgb()

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

 main {
    background-color: rgb(83, 38, 92);
   }

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(290, 42%, 25%);
  }

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 #53265c

RGB Code Hex Code Preview
rgb(83, 38, 92, 10%) #53265c1a  
rgb(83, 38, 92, 20%) #53265c33  
rgb(83, 38, 92, 40%) #53265c4C  
rgb(83, 38, 92, 60%) #53265c99  
rgb(83, 38, 92, 80%) #53265cCC  
rgb(83, 38, 92, 100%) #53265cFF  

Saturated and desaturated colors of #53265c

HSL Code Preview
hsl(290, 10%, 25%)  
hsl(290, 20%, 25%)  
hsl(290, 40%, 25%)  
hsl(290, 60%, 25%)  
hsl(290, 80%, 25%)  
hsl(290, 100%, 25%)  

#53265c Color Usage In CSS

 body {
    color: #53265c;
    }
 p {
    color: rgb(83, 38, 92);
    }
 header {
    border-bottom:1px solid #53265c;
    }
Recent Random Colors