Random Color Generator

#3607ed Color

Color Codes
Hex Code #3607ed
RGB Code rgb(54, 07, 237)
HSL Code hsl(252, 94%, 48%)

#3607ed Color Syntax

rgb()

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

 main {
    background-color: rgb(54, 07, 237);
   }

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(252, 94%, 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 #3607ed

RGB Code Hex Code Preview
rgb(54, 07, 237, 10%) #3607ed1a  
rgb(54, 07, 237, 20%) #3607ed33  
rgb(54, 07, 237, 40%) #3607ed4C  
rgb(54, 07, 237, 60%) #3607ed99  
rgb(54, 07, 237, 80%) #3607edCC  
rgb(54, 07, 237, 100%) #3607edFF  

Saturated and desaturated colors of #3607ed

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

#3607ed Color Usage In CSS

 body {
    color: #3607ed;
    }
 p {
    color: rgb(54, 07, 237);
    }
 header {
    border-bottom:1px solid #3607ed;
    }
Recent Random Colors