Random Color Generator

#3f75dc Color

Color Codes
Hex Code #3f75dc
RGB Code rgb(63, 117, 220)
HSL Code hsl(219, 69%, 55%)

#3f75dc Color Syntax

rgb()

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

 main {
    background-color: rgb(63, 117, 220);
   }

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(219, 69%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(63, 117, 220, 10%) #3f75dc1a  
rgb(63, 117, 220, 20%) #3f75dc33  
rgb(63, 117, 220, 40%) #3f75dc4C  
rgb(63, 117, 220, 60%) #3f75dc99  
rgb(63, 117, 220, 80%) #3f75dcCC  
rgb(63, 117, 220, 100%) #3f75dcFF  

Saturated and desaturated colors of #3f75dc

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

#3f75dc Color Usage In CSS

 body {
    color: #3f75dc;
    }
 p {
    color: rgb(63, 117, 220);
    }
 header {
    border-bottom:1px solid #3f75dc;
    }
Recent Random Colors