Random Color Generator

#3a01cf Color

Color Codes
Hex Code #3a01cf
RGB Code rgb(58, 01, 207)
HSL Code hsl(257, 99%, 41%)

#3a01cf Color Syntax

rgb()

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

 main {
    background-color: rgb(58, 01, 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(257, 99%, 41%);
  }

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 #3a01cf

RGB Code Hex Code Preview
rgb(58, 01, 207, 10%) #3a01cf1a  
rgb(58, 01, 207, 20%) #3a01cf33  
rgb(58, 01, 207, 40%) #3a01cf4C  
rgb(58, 01, 207, 60%) #3a01cf99  
rgb(58, 01, 207, 80%) #3a01cfCC  
rgb(58, 01, 207, 100%) #3a01cfFF  

Saturated and desaturated colors of #3a01cf

HSL Code Preview
hsl(257, 10%, 41%)  
hsl(257, 20%, 41%)  
hsl(257, 40%, 41%)  
hsl(257, 60%, 41%)  
hsl(257, 80%, 41%)  
hsl(257, 100%, 41%)  

#3a01cf Color Usage In CSS

 body {
    color: #3a01cf;
    }
 p {
    color: rgb(58, 01, 207);
    }
 header {
    border-bottom:1px solid #3a01cf;
    }
Recent Random Colors