Random Color Generator

#575182 Color

Color Codes
Hex Code #575182
RGB Code rgb(87, 81, 130)
HSL Code hsl(247, 23%, 41%)

#575182 Color Syntax

rgb()

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

 main {
    background-color: rgb(87, 81, 130);
   }

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(247, 23%, 41%);
  }

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 #575182

RGB Code Hex Code Preview
rgb(87, 81, 130, 10%) #5751821a  
rgb(87, 81, 130, 20%) #57518233  
rgb(87, 81, 130, 40%) #5751824C  
rgb(87, 81, 130, 60%) #57518299  
rgb(87, 81, 130, 80%) #575182CC  
rgb(87, 81, 130, 100%) #575182FF  

Saturated and desaturated colors of #575182

HSL Code Preview
hsl(247, 10%, 41%)  
hsl(247, 20%, 41%)  
hsl(247, 40%, 41%)  
hsl(247, 60%, 41%)  
hsl(247, 80%, 41%)  
hsl(247, 100%, 41%)  

#575182 Color Usage In CSS

 body {
    color: #575182;
    }
 p {
    color: rgb(87, 81, 130);
    }
 header {
    border-bottom:1px solid #575182;
    }
Recent Random Colors