Random Color Generator

#53558e Color

Color Codes
Hex Code #53558e
RGB Code rgb(83, 85, 142)
HSL Code hsl(238, 26%, 44%)

#53558e Color Syntax

rgb()

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

 main {
    background-color: rgb(83, 85, 142);
   }

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(238, 26%, 44%);
  }

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 #53558e

RGB Code Hex Code Preview
rgb(83, 85, 142, 10%) #53558e1a  
rgb(83, 85, 142, 20%) #53558e33  
rgb(83, 85, 142, 40%) #53558e4C  
rgb(83, 85, 142, 60%) #53558e99  
rgb(83, 85, 142, 80%) #53558eCC  
rgb(83, 85, 142, 100%) #53558eFF  

Saturated and desaturated colors of #53558e

HSL Code Preview
hsl(238, 10%, 44%)  
hsl(238, 20%, 44%)  
hsl(238, 40%, 44%)  
hsl(238, 60%, 44%)  
hsl(238, 80%, 44%)  
hsl(238, 100%, 44%)  

#53558e Color Usage In CSS

 body {
    color: #53558e;
    }
 p {
    color: rgb(83, 85, 142);
    }
 header {
    border-bottom:1px solid #53558e;
    }
Recent Random Colors