Random Color Generator

#168ddc Color

Color Codes
Hex Code #168ddc
RGB Code rgb(22, 141, 220)
HSL Code hsl(204, 82%, 47%)

#168ddc Color Syntax

rgb()

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

 main {
    background-color: rgb(22, 141, 220);
   }

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, 82%, 47%);
  }

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 #168ddc

RGB Code Hex Code Preview
rgb(22, 141, 220, 10%) #168ddc1a  
rgb(22, 141, 220, 20%) #168ddc33  
rgb(22, 141, 220, 40%) #168ddc4C  
rgb(22, 141, 220, 60%) #168ddc99  
rgb(22, 141, 220, 80%) #168ddcCC  
rgb(22, 141, 220, 100%) #168ddcFF  

Saturated and desaturated colors of #168ddc

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

#168ddc Color Usage In CSS

 body {
    color: #168ddc;
    }
 p {
    color: rgb(22, 141, 220);
    }
 header {
    border-bottom:1px solid #168ddc;
    }
Recent Random Colors