Random Color Generator

#610afa Color

Color Codes
Hex Code #610afa
RGB Code rgb(97, 10, 250)
HSL Code hsl(262, 96%, 51%)

#610afa Color Syntax

rgb()

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

 main {
    background-color: rgb(97, 10, 250);
   }

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(262, 96%, 51%);
  }

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 #610afa

RGB Code Hex Code Preview
rgb(97, 10, 250, 10%) #610afa1a  
rgb(97, 10, 250, 20%) #610afa33  
rgb(97, 10, 250, 40%) #610afa4C  
rgb(97, 10, 250, 60%) #610afa99  
rgb(97, 10, 250, 80%) #610afaCC  
rgb(97, 10, 250, 100%) #610afaFF  

Saturated and desaturated colors of #610afa

HSL Code Preview
hsl(262, 10%, 51%)  
hsl(262, 20%, 51%)  
hsl(262, 40%, 51%)  
hsl(262, 60%, 51%)  
hsl(262, 80%, 51%)  
hsl(262, 100%, 51%)  

#610afa Color Usage In CSS

 body {
    color: #610afa;
    }
 p {
    color: rgb(97, 10, 250);
    }
 header {
    border-bottom:1px solid #610afa;
    }
Recent Random Colors