Random Color Generator

#2ca0ec Color

Color Codes
Hex Code #2ca0ec
RGB Code rgb(44, 160, 236)
HSL Code hsl(204, 83%, 55%)

#2ca0ec Color Syntax

rgb()

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

 main {
    background-color: rgb(44, 160, 236);
   }

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(204, 83%, 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 #2ca0ec

RGB Code Hex Code Preview
rgb(44, 160, 236, 10%) #2ca0ec1a  
rgb(44, 160, 236, 20%) #2ca0ec33  
rgb(44, 160, 236, 40%) #2ca0ec4C  
rgb(44, 160, 236, 60%) #2ca0ec99  
rgb(44, 160, 236, 80%) #2ca0ecCC  
rgb(44, 160, 236, 100%) #2ca0ecFF  

Saturated and desaturated colors of #2ca0ec

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

#2ca0ec Color Usage In CSS

 body {
    color: #2ca0ec;
    }
 p {
    color: rgb(44, 160, 236);
    }
 header {
    border-bottom:1px solid #2ca0ec;
    }
Recent Random Colors