Random Color Generator

#3e62f9 Color

Color Codes
Hex Code #3e62f9
RGB Code rgb(62, 98, 249)
HSL Code hsl(228, 94%, 61%)

#3e62f9 Color Syntax

rgb()

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

 main {
    background-color: rgb(62, 98, 249);
   }

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(228, 94%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(62, 98, 249, 10%) #3e62f91a  
rgb(62, 98, 249, 20%) #3e62f933  
rgb(62, 98, 249, 40%) #3e62f94C  
rgb(62, 98, 249, 60%) #3e62f999  
rgb(62, 98, 249, 80%) #3e62f9CC  
rgb(62, 98, 249, 100%) #3e62f9FF  

Saturated and desaturated colors of #3e62f9

HSL Code Preview
hsl(228, 10%, 61%)  
hsl(228, 20%, 61%)  
hsl(228, 40%, 61%)  
hsl(228, 60%, 61%)  
hsl(228, 80%, 61%)  
hsl(228, 100%, 61%)  

#3e62f9 Color Usage In CSS

 body {
    color: #3e62f9;
    }
 p {
    color: rgb(62, 98, 249);
    }
 header {
    border-bottom:1px solid #3e62f9;
    }
Recent Random Colors