Random Color Generator

#fab080 Color

Color Codes
Hex Code #fab080
RGB Code rgb(250, 176, 128)
HSL Code hsl(24, 92%, 74%)

#fab080 Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 176, 128);
   }

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(24, 92%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(250, 176, 128, 10%) #fab0801a  
rgb(250, 176, 128, 20%) #fab08033  
rgb(250, 176, 128, 40%) #fab0804C  
rgb(250, 176, 128, 60%) #fab08099  
rgb(250, 176, 128, 80%) #fab080CC  
rgb(250, 176, 128, 100%) #fab080FF  

Saturated and desaturated colors of #fab080

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

#fab080 Color Usage In CSS

 body {
    color: #fab080;
    }
 p {
    color: rgb(250, 176, 128);
    }
 header {
    border-bottom:1px solid #fab080;
    }
Recent Random Colors