Random Color Generator

#cab1ac Color

Color Codes
Hex Code #cab1ac
RGB Code rgb(202, 177, 172)
HSL Code hsl(10, 22%, 73%)

#cab1ac Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 177, 172);
   }

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(10, 22%, 73%);
  }

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

RGB Code Hex Code Preview
rgb(202, 177, 172, 10%) #cab1ac1a  
rgb(202, 177, 172, 20%) #cab1ac33  
rgb(202, 177, 172, 40%) #cab1ac4C  
rgb(202, 177, 172, 60%) #cab1ac99  
rgb(202, 177, 172, 80%) #cab1acCC  
rgb(202, 177, 172, 100%) #cab1acFF  

Saturated and desaturated colors of #cab1ac

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

#cab1ac Color Usage In CSS

 body {
    color: #cab1ac;
    }
 p {
    color: rgb(202, 177, 172);
    }
 header {
    border-bottom:1px solid #cab1ac;
    }
Recent Random Colors