Random Color Generator

#1c8ecf Color

Color Codes
Hex Code #1c8ecf
RGB Code rgb(28, 142, 207)
HSL Code hsl(202, 76%, 46%)

#1c8ecf Color Syntax

rgb()

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

 main {
    background-color: rgb(28, 142, 207);
   }

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(202, 76%, 46%);
  }

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 #1c8ecf

RGB Code Hex Code Preview
rgb(28, 142, 207, 10%) #1c8ecf1a  
rgb(28, 142, 207, 20%) #1c8ecf33  
rgb(28, 142, 207, 40%) #1c8ecf4C  
rgb(28, 142, 207, 60%) #1c8ecf99  
rgb(28, 142, 207, 80%) #1c8ecfCC  
rgb(28, 142, 207, 100%) #1c8ecfFF  

Saturated and desaturated colors of #1c8ecf

HSL Code Preview
hsl(202, 10%, 46%)  
hsl(202, 20%, 46%)  
hsl(202, 40%, 46%)  
hsl(202, 60%, 46%)  
hsl(202, 80%, 46%)  
hsl(202, 100%, 46%)  

#1c8ecf Color Usage In CSS

 body {
    color: #1c8ecf;
    }
 p {
    color: rgb(28, 142, 207);
    }
 header {
    border-bottom:1px solid #1c8ecf;
    }
Recent Random Colors