Random Color Generator

#524d90 Color

Color Codes
Hex Code #524d90
RGB Code rgb(82, 77, 144)
HSL Code hsl(244, 30%, 43%)

#524d90 Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 77, 144);
   }

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(244, 30%, 43%);
  }

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 #524d90

RGB Code Hex Code Preview
rgb(82, 77, 144, 10%) #524d901a  
rgb(82, 77, 144, 20%) #524d9033  
rgb(82, 77, 144, 40%) #524d904C  
rgb(82, 77, 144, 60%) #524d9099  
rgb(82, 77, 144, 80%) #524d90CC  
rgb(82, 77, 144, 100%) #524d90FF  

Saturated and desaturated colors of #524d90

HSL Code Preview
hsl(244, 10%, 43%)  
hsl(244, 20%, 43%)  
hsl(244, 40%, 43%)  
hsl(244, 60%, 43%)  
hsl(244, 80%, 43%)  
hsl(244, 100%, 43%)  

#524d90 Color Usage In CSS

 body {
    color: #524d90;
    }
 p {
    color: rgb(82, 77, 144);
    }
 header {
    border-bottom:1px solid #524d90;
    }
Recent Random Colors