Random Color Generator

#620cca Color

Color Codes
Hex Code #620cca
RGB Code rgb(98, 12, 202)
HSL Code hsl(267, 89%, 42%)

#620cca Color Syntax

rgb()

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

 main {
    background-color: rgb(98, 12, 202);
   }

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(267, 89%, 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 #620cca

RGB Code Hex Code Preview
rgb(98, 12, 202, 10%) #620cca1a  
rgb(98, 12, 202, 20%) #620cca33  
rgb(98, 12, 202, 40%) #620cca4C  
rgb(98, 12, 202, 60%) #620cca99  
rgb(98, 12, 202, 80%) #620ccaCC  
rgb(98, 12, 202, 100%) #620ccaFF  

Saturated and desaturated colors of #620cca

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

#620cca Color Usage In CSS

 body {
    color: #620cca;
    }
 p {
    color: rgb(98, 12, 202);
    }
 header {
    border-bottom:1px solid #620cca;
    }
Recent Random Colors