Random Color Generator

#70989e Color

Color Codes
Hex Code #70989e
RGB Code rgb(112, 152, 158)
HSL Code hsl(188, 19%, 53%)

#70989e Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 152, 158);
   }

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, 19%, 53%);
  }

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 #70989e

RGB Code Hex Code Preview
rgb(112, 152, 158, 10%) #70989e1a  
rgb(112, 152, 158, 20%) #70989e33  
rgb(112, 152, 158, 40%) #70989e4C  
rgb(112, 152, 158, 60%) #70989e99  
rgb(112, 152, 158, 80%) #70989eCC  
rgb(112, 152, 158, 100%) #70989eFF  

Saturated and desaturated colors of #70989e

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

#70989e Color Usage In CSS

 body {
    color: #70989e;
    }
 p {
    color: rgb(112, 152, 158);
    }
 header {
    border-bottom:1px solid #70989e;
    }
Recent Random Colors