Random Color Generator

#3c88ed Color

Color Codes
Hex Code #3c88ed
RGB Code rgb(60, 136, 237)
HSL Code hsl(214, 83%, 58%)

#3c88ed Color Syntax

rgb()

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

 main {
    background-color: rgb(60, 136, 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(214, 83%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(60, 136, 237, 10%) #3c88ed1a  
rgb(60, 136, 237, 20%) #3c88ed33  
rgb(60, 136, 237, 40%) #3c88ed4C  
rgb(60, 136, 237, 60%) #3c88ed99  
rgb(60, 136, 237, 80%) #3c88edCC  
rgb(60, 136, 237, 100%) #3c88edFF  

Saturated and desaturated colors of #3c88ed

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

#3c88ed Color Usage In CSS

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