Random Color Generator

#acb7b4 Color

Color Codes
Hex Code #acb7b4
RGB Code rgb(172, 183, 180)
HSL Code hsl(164, 7%, 70%)

#acb7b4 Color Syntax

rgb()

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

 main {
    background-color: rgb(172, 183, 180);
   }

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(164, 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 #acb7b4

RGB Code Hex Code Preview
rgb(172, 183, 180, 10%) #acb7b41a  
rgb(172, 183, 180, 20%) #acb7b433  
rgb(172, 183, 180, 40%) #acb7b44C  
rgb(172, 183, 180, 60%) #acb7b499  
rgb(172, 183, 180, 80%) #acb7b4CC  
rgb(172, 183, 180, 100%) #acb7b4FF  

Saturated and desaturated colors of #acb7b4

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

#acb7b4 Color Usage In CSS

 body {
    color: #acb7b4;
    }
 p {
    color: rgb(172, 183, 180);
    }
 header {
    border-bottom:1px solid #acb7b4;
    }
Recent Random Colors