Random Color Generator

#acfab4 Color

Color Codes
Hex Code #acfab4
RGB Code rgb(172, 250, 180)
HSL Code hsl(126, 89%, 83%)

#acfab4 Color Syntax

rgb()

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

 main {
    background-color: rgb(172, 250, 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(126, 89%, 83%);
  }

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

RGB Code Hex Code Preview
rgb(172, 250, 180, 10%) #acfab41a  
rgb(172, 250, 180, 20%) #acfab433  
rgb(172, 250, 180, 40%) #acfab44C  
rgb(172, 250, 180, 60%) #acfab499  
rgb(172, 250, 180, 80%) #acfab4CC  
rgb(172, 250, 180, 100%) #acfab4FF  

Saturated and desaturated colors of #acfab4

HSL Code Preview
hsl(126, 10%, 83%)  
hsl(126, 20%, 83%)  
hsl(126, 40%, 83%)  
hsl(126, 60%, 83%)  
hsl(126, 80%, 83%)  
hsl(126, 100%, 83%)  

#acfab4 Color Usage In CSS

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