Random Color Generator

#3d8ae0 Color

Color Codes
Hex Code #3d8ae0
RGB Code rgb(61, 138, 224)
HSL Code hsl(212, 72%, 56%)

#3d8ae0 Color Syntax

rgb()

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

 main {
    background-color: rgb(61, 138, 224);
   }

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(212, 72%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(61, 138, 224, 10%) #3d8ae01a  
rgb(61, 138, 224, 20%) #3d8ae033  
rgb(61, 138, 224, 40%) #3d8ae04C  
rgb(61, 138, 224, 60%) #3d8ae099  
rgb(61, 138, 224, 80%) #3d8ae0CC  
rgb(61, 138, 224, 100%) #3d8ae0FF  

Saturated and desaturated colors of #3d8ae0

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

#3d8ae0 Color Usage In CSS

 body {
    color: #3d8ae0;
    }
 p {
    color: rgb(61, 138, 224);
    }
 header {
    border-bottom:1px solid #3d8ae0;
    }
Recent Random Colors