Random Color Generator

#fab6ad Color

Color Codes
Hex Code #fab6ad
RGB Code rgb(250, 182, 173)
HSL Code hsl(7, 89%, 83%)

#fab6ad Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 182, 173);
   }

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(7, 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 #fab6ad

RGB Code Hex Code Preview
rgb(250, 182, 173, 10%) #fab6ad1a  
rgb(250, 182, 173, 20%) #fab6ad33  
rgb(250, 182, 173, 40%) #fab6ad4C  
rgb(250, 182, 173, 60%) #fab6ad99  
rgb(250, 182, 173, 80%) #fab6adCC  
rgb(250, 182, 173, 100%) #fab6adFF  

Saturated and desaturated colors of #fab6ad

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

#fab6ad Color Usage In CSS

 body {
    color: #fab6ad;
    }
 p {
    color: rgb(250, 182, 173);
    }
 header {
    border-bottom:1px solid #fab6ad;
    }
Recent Random Colors