Random Color Generator

#5a4b79 Color

Color Codes
Hex Code #5a4b79
RGB Code rgb(90, 75, 121)
HSL Code hsl(260, 23%, 38%)

#5a4b79 Color Syntax

rgb()

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

 main {
    background-color: rgb(90, 75, 121);
   }

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(260, 23%, 38%);
  }

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 #5a4b79

RGB Code Hex Code Preview
rgb(90, 75, 121, 10%) #5a4b791a  
rgb(90, 75, 121, 20%) #5a4b7933  
rgb(90, 75, 121, 40%) #5a4b794C  
rgb(90, 75, 121, 60%) #5a4b7999  
rgb(90, 75, 121, 80%) #5a4b79CC  
rgb(90, 75, 121, 100%) #5a4b79FF  

Saturated and desaturated colors of #5a4b79

HSL Code Preview
hsl(260, 10%, 38%)  
hsl(260, 20%, 38%)  
hsl(260, 40%, 38%)  
hsl(260, 60%, 38%)  
hsl(260, 80%, 38%)  
hsl(260, 100%, 38%)  

#5a4b79 Color Usage In CSS

 body {
    color: #5a4b79;
    }
 p {
    color: rgb(90, 75, 121);
    }
 header {
    border-bottom:1px solid #5a4b79;
    }
Recent Random Colors