Random Color Generator

#6361ab Color

Color Codes
Hex Code #6361ab
RGB Code rgb(99, 97, 171)
HSL Code hsl(242, 31%, 53%)

#6361ab Color Syntax

rgb()

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

 main {
    background-color: rgb(99, 97, 171);
   }

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(242, 31%, 53%);
  }

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 #6361ab

RGB Code Hex Code Preview
rgb(99, 97, 171, 10%) #6361ab1a  
rgb(99, 97, 171, 20%) #6361ab33  
rgb(99, 97, 171, 40%) #6361ab4C  
rgb(99, 97, 171, 60%) #6361ab99  
rgb(99, 97, 171, 80%) #6361abCC  
rgb(99, 97, 171, 100%) #6361abFF  

Saturated and desaturated colors of #6361ab

HSL Code Preview
hsl(242, 10%, 53%)  
hsl(242, 20%, 53%)  
hsl(242, 40%, 53%)  
hsl(242, 60%, 53%)  
hsl(242, 80%, 53%)  
hsl(242, 100%, 53%)  

#6361ab Color Usage In CSS

 body {
    color: #6361ab;
    }
 p {
    color: rgb(99, 97, 171);
    }
 header {
    border-bottom:1px solid #6361ab;
    }
Recent Random Colors