Random Color Generator

#70b3ae Color

Color Codes
Hex Code #70b3ae
RGB Code rgb(112, 179, 174)
HSL Code hsl(176, 31%, 57%)

#70b3ae Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 179, 174);
   }

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(176, 31%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(112, 179, 174, 10%) #70b3ae1a  
rgb(112, 179, 174, 20%) #70b3ae33  
rgb(112, 179, 174, 40%) #70b3ae4C  
rgb(112, 179, 174, 60%) #70b3ae99  
rgb(112, 179, 174, 80%) #70b3aeCC  
rgb(112, 179, 174, 100%) #70b3aeFF  

Saturated and desaturated colors of #70b3ae

HSL Code Preview
hsl(176, 10%, 57%)  
hsl(176, 20%, 57%)  
hsl(176, 40%, 57%)  
hsl(176, 60%, 57%)  
hsl(176, 80%, 57%)  
hsl(176, 100%, 57%)  

#70b3ae Color Usage In CSS

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