Random Color Generator

#601ada Color

Color Codes
Hex Code #601ada
RGB Code rgb(96, 26, 218)
HSL Code hsl(262, 79%, 48%)

#601ada Color Syntax

rgb()

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

 main {
    background-color: rgb(96, 26, 218);
   }

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, 79%, 48%);
  }

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 #601ada

RGB Code Hex Code Preview
rgb(96, 26, 218, 10%) #601ada1a  
rgb(96, 26, 218, 20%) #601ada33  
rgb(96, 26, 218, 40%) #601ada4C  
rgb(96, 26, 218, 60%) #601ada99  
rgb(96, 26, 218, 80%) #601adaCC  
rgb(96, 26, 218, 100%) #601adaFF  

Saturated and desaturated colors of #601ada

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

#601ada Color Usage In CSS

 body {
    color: #601ada;
    }
 p {
    color: rgb(96, 26, 218);
    }
 header {
    border-bottom:1px solid #601ada;
    }
Recent Random Colors