Random Color Generator

#3f97cd Color

Color Codes
Hex Code #3f97cd
RGB Code rgb(63, 151, 205)
HSL Code hsl(203, 59%, 53%)

#3f97cd Color Syntax

rgb()

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

 main {
    background-color: rgb(63, 151, 205);
   }

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(203, 59%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(63, 151, 205, 10%) #3f97cd1a  
rgb(63, 151, 205, 20%) #3f97cd33  
rgb(63, 151, 205, 40%) #3f97cd4C  
rgb(63, 151, 205, 60%) #3f97cd99  
rgb(63, 151, 205, 80%) #3f97cdCC  
rgb(63, 151, 205, 100%) #3f97cdFF  

Saturated and desaturated colors of #3f97cd

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

#3f97cd Color Usage In CSS

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