Random Color Generator

#6349c1 Color

Color Codes
Hex Code #6349c1
RGB Code rgb(99, 73, 193)
HSL Code hsl(253, 49%, 52%)

#6349c1 Color Syntax

rgb()

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

 main {
    background-color: rgb(99, 73, 193);
   }

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, 49%, 52%);
  }

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 #6349c1

RGB Code Hex Code Preview
rgb(99, 73, 193, 10%) #6349c11a  
rgb(99, 73, 193, 20%) #6349c133  
rgb(99, 73, 193, 40%) #6349c14C  
rgb(99, 73, 193, 60%) #6349c199  
rgb(99, 73, 193, 80%) #6349c1CC  
rgb(99, 73, 193, 100%) #6349c1FF  

Saturated and desaturated colors of #6349c1

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

#6349c1 Color Usage In CSS

 body {
    color: #6349c1;
    }
 p {
    color: rgb(99, 73, 193);
    }
 header {
    border-bottom:1px solid #6349c1;
    }
Recent Random Colors