Random Color Generator

#70c0cd Color

Color Codes
Hex Code #70c0cd
RGB Code rgb(112, 192, 205)
HSL Code hsl(188, 48%, 62%)

#70c0cd Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 192, 205);
   }

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(188, 48%, 62%);
  }

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 #70c0cd

RGB Code Hex Code Preview
rgb(112, 192, 205, 10%) #70c0cd1a  
rgb(112, 192, 205, 20%) #70c0cd33  
rgb(112, 192, 205, 40%) #70c0cd4C  
rgb(112, 192, 205, 60%) #70c0cd99  
rgb(112, 192, 205, 80%) #70c0cdCC  
rgb(112, 192, 205, 100%) #70c0cdFF  

Saturated and desaturated colors of #70c0cd

HSL Code Preview
hsl(188, 10%, 62%)  
hsl(188, 20%, 62%)  
hsl(188, 40%, 62%)  
hsl(188, 60%, 62%)  
hsl(188, 80%, 62%)  
hsl(188, 100%, 62%)  

#70c0cd Color Usage In CSS

 body {
    color: #70c0cd;
    }
 p {
    color: rgb(112, 192, 205);
    }
 header {
    border-bottom:1px solid #70c0cd;
    }
Recent Random Colors