Random Color Generator

#aeb9b0 Color

Color Codes
Hex Code #aeb9b0
RGB Code rgb(174, 185, 176)
HSL Code hsl(131, 7%, 70%)

#aeb9b0 Color Syntax

rgb()

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

 main {
    background-color: rgb(174, 185, 176);
   }

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(131, 7%, 70%);
  }

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 #aeb9b0

RGB Code Hex Code Preview
rgb(174, 185, 176, 10%) #aeb9b01a  
rgb(174, 185, 176, 20%) #aeb9b033  
rgb(174, 185, 176, 40%) #aeb9b04C  
rgb(174, 185, 176, 60%) #aeb9b099  
rgb(174, 185, 176, 80%) #aeb9b0CC  
rgb(174, 185, 176, 100%) #aeb9b0FF  

Saturated and desaturated colors of #aeb9b0

HSL Code Preview
hsl(131, 10%, 70%)  
hsl(131, 20%, 70%)  
hsl(131, 40%, 70%)  
hsl(131, 60%, 70%)  
hsl(131, 80%, 70%)  
hsl(131, 100%, 70%)  

#aeb9b0 Color Usage In CSS

 body {
    color: #aeb9b0;
    }
 p {
    color: rgb(174, 185, 176);
    }
 header {
    border-bottom:1px solid #aeb9b0;
    }
Recent Random Colors