Random Color Generator

#521f54 Color

Color Codes
Hex Code #521f54
RGB Code rgb(82, 31, 84)
HSL Code hsl(298, 46%, 23%)

#521f54 Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 31, 84);
   }

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(298, 46%, 23%);
  }

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 #521f54

RGB Code Hex Code Preview
rgb(82, 31, 84, 10%) #521f541a  
rgb(82, 31, 84, 20%) #521f5433  
rgb(82, 31, 84, 40%) #521f544C  
rgb(82, 31, 84, 60%) #521f5499  
rgb(82, 31, 84, 80%) #521f54CC  
rgb(82, 31, 84, 100%) #521f54FF  

Saturated and desaturated colors of #521f54

HSL Code Preview
hsl(298, 10%, 23%)  
hsl(298, 20%, 23%)  
hsl(298, 40%, 23%)  
hsl(298, 60%, 23%)  
hsl(298, 80%, 23%)  
hsl(298, 100%, 23%)  

#521f54 Color Usage In CSS

 body {
    color: #521f54;
    }
 p {
    color: rgb(82, 31, 84);
    }
 header {
    border-bottom:1px solid #521f54;
    }
Recent Random Colors