Random Color Generator

#3c4b91 Color

Color Codes
Hex Code #3c4b91
RGB Code rgb(60, 75, 145)
HSL Code hsl(229, 41%, 40%)

#3c4b91 Color Syntax

rgb()

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

 main {
    background-color: rgb(60, 75, 145);
   }

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(229, 41%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(60, 75, 145, 10%) #3c4b911a  
rgb(60, 75, 145, 20%) #3c4b9133  
rgb(60, 75, 145, 40%) #3c4b914C  
rgb(60, 75, 145, 60%) #3c4b9199  
rgb(60, 75, 145, 80%) #3c4b91CC  
rgb(60, 75, 145, 100%) #3c4b91FF  

Saturated and desaturated colors of #3c4b91

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

#3c4b91 Color Usage In CSS

 body {
    color: #3c4b91;
    }
 p {
    color: rgb(60, 75, 145);
    }
 header {
    border-bottom:1px solid #3c4b91;
    }
Recent Random Colors