Random Color Generator

#553ab5 Color

Color Codes
Hex Code #553ab5
RGB Code rgb(85, 58, 181)
HSL Code hsl(253, 51%, 47%)

#553ab5 Color Syntax

rgb()

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

 main {
    background-color: rgb(85, 58, 181);
   }

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(253, 51%, 47%);
  }

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 #553ab5

RGB Code Hex Code Preview
rgb(85, 58, 181, 10%) #553ab51a  
rgb(85, 58, 181, 20%) #553ab533  
rgb(85, 58, 181, 40%) #553ab54C  
rgb(85, 58, 181, 60%) #553ab599  
rgb(85, 58, 181, 80%) #553ab5CC  
rgb(85, 58, 181, 100%) #553ab5FF  

Saturated and desaturated colors of #553ab5

HSL Code Preview
hsl(253, 10%, 47%)  
hsl(253, 20%, 47%)  
hsl(253, 40%, 47%)  
hsl(253, 60%, 47%)  
hsl(253, 80%, 47%)  
hsl(253, 100%, 47%)  

#553ab5 Color Usage In CSS

 body {
    color: #553ab5;
    }
 p {
    color: rgb(85, 58, 181);
    }
 header {
    border-bottom:1px solid #553ab5;
    }
Recent Random Colors