Random Color Generator

#5b3a7d Color

Color Codes
Hex Code #5b3a7d
RGB Code rgb(91, 58, 125)
HSL Code hsl(270, 37%, 36%)

#5b3a7d Color Syntax

rgb()

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

 main {
    background-color: rgb(91, 58, 125);
   }

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(270, 37%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(91, 58, 125, 10%) #5b3a7d1a  
rgb(91, 58, 125, 20%) #5b3a7d33  
rgb(91, 58, 125, 40%) #5b3a7d4C  
rgb(91, 58, 125, 60%) #5b3a7d99  
rgb(91, 58, 125, 80%) #5b3a7dCC  
rgb(91, 58, 125, 100%) #5b3a7dFF  

Saturated and desaturated colors of #5b3a7d

HSL Code Preview
hsl(270, 10%, 36%)  
hsl(270, 20%, 36%)  
hsl(270, 40%, 36%)  
hsl(270, 60%, 36%)  
hsl(270, 80%, 36%)  
hsl(270, 100%, 36%)  

#5b3a7d Color Usage In CSS

 body {
    color: #5b3a7d;
    }
 p {
    color: rgb(91, 58, 125);
    }
 header {
    border-bottom:1px solid #5b3a7d;
    }
Recent Random Colors