Random Color Generator

#612acf Color

Color Codes
Hex Code #612acf
RGB Code rgb(97, 42, 207)
HSL Code hsl(260, 66%, 49%)

#612acf Color Syntax

rgb()

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

 main {
    background-color: rgb(97, 42, 207);
   }

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(260, 66%, 49%);
  }

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 #612acf

RGB Code Hex Code Preview
rgb(97, 42, 207, 10%) #612acf1a  
rgb(97, 42, 207, 20%) #612acf33  
rgb(97, 42, 207, 40%) #612acf4C  
rgb(97, 42, 207, 60%) #612acf99  
rgb(97, 42, 207, 80%) #612acfCC  
rgb(97, 42, 207, 100%) #612acfFF  

Saturated and desaturated colors of #612acf

HSL Code Preview
hsl(260, 10%, 49%)  
hsl(260, 20%, 49%)  
hsl(260, 40%, 49%)  
hsl(260, 60%, 49%)  
hsl(260, 80%, 49%)  
hsl(260, 100%, 49%)  

#612acf Color Usage In CSS

 body {
    color: #612acf;
    }
 p {
    color: rgb(97, 42, 207);
    }
 header {
    border-bottom:1px solid #612acf;
    }
Recent Random Colors