Random Color Generator

#8b908c Color

Color Codes
Hex Code #8b908c
RGB Code rgb(139, 144, 140)
HSL Code hsl(132, 2%, 55%)

#8b908c Color Syntax

rgb()

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

 main {
    background-color: rgb(139, 144, 140);
   }

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(132, 2%, 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 #8b908c

RGB Code Hex Code Preview
rgb(139, 144, 140, 10%) #8b908c1a  
rgb(139, 144, 140, 20%) #8b908c33  
rgb(139, 144, 140, 40%) #8b908c4C  
rgb(139, 144, 140, 60%) #8b908c99  
rgb(139, 144, 140, 80%) #8b908cCC  
rgb(139, 144, 140, 100%) #8b908cFF  

Saturated and desaturated colors of #8b908c

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

#8b908c Color Usage In CSS

 body {
    color: #8b908c;
    }
 p {
    color: rgb(139, 144, 140);
    }
 header {
    border-bottom:1px solid #8b908c;
    }
Recent Random Colors