Random Color Generator

#5401d7 Color

Color Codes
Hex Code #5401d7
RGB Code rgb(84, 01, 215)
HSL Code hsl(263, 99%, 42%)

#5401d7 Color Syntax

rgb()

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

 main {
    background-color: rgb(84, 01, 215);
   }

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(263, 99%, 42%);
  }

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 #5401d7

RGB Code Hex Code Preview
rgb(84, 01, 215, 10%) #5401d71a  
rgb(84, 01, 215, 20%) #5401d733  
rgb(84, 01, 215, 40%) #5401d74C  
rgb(84, 01, 215, 60%) #5401d799  
rgb(84, 01, 215, 80%) #5401d7CC  
rgb(84, 01, 215, 100%) #5401d7FF  

Saturated and desaturated colors of #5401d7

HSL Code Preview
hsl(263, 10%, 42%)  
hsl(263, 20%, 42%)  
hsl(263, 40%, 42%)  
hsl(263, 60%, 42%)  
hsl(263, 80%, 42%)  
hsl(263, 100%, 42%)  

#5401d7 Color Usage In CSS

 body {
    color: #5401d7;
    }
 p {
    color: rgb(84, 01, 215);
    }
 header {
    border-bottom:1px solid #5401d7;
    }
Recent Random Colors