Random Color Generator

#80889b Color

Color Codes
Hex Code #80889b
RGB Code rgb(128, 136, 155)
HSL Code hsl(222, 12%, 55%)

#80889b Color Syntax

rgb()

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

 main {
    background-color: rgb(128, 136, 155);
   }

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(222, 12%, 55%);
  }

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 #80889b

RGB Code Hex Code Preview
rgb(128, 136, 155, 10%) #80889b1a  
rgb(128, 136, 155, 20%) #80889b33  
rgb(128, 136, 155, 40%) #80889b4C  
rgb(128, 136, 155, 60%) #80889b99  
rgb(128, 136, 155, 80%) #80889bCC  
rgb(128, 136, 155, 100%) #80889bFF  

Saturated and desaturated colors of #80889b

HSL Code Preview
hsl(222, 10%, 55%)  
hsl(222, 20%, 55%)  
hsl(222, 40%, 55%)  
hsl(222, 60%, 55%)  
hsl(222, 80%, 55%)  
hsl(222, 100%, 55%)  

#80889b Color Usage In CSS

 body {
    color: #80889b;
    }
 p {
    color: rgb(128, 136, 155);
    }
 header {
    border-bottom:1px solid #80889b;
    }
Recent Random Colors