Random Color Generator

#fab76c Color

Color Codes
Hex Code #fab76c
RGB Code rgb(250, 183, 108)
HSL Code hsl(32, 93%, 70%)

#fab76c Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 183, 108);
   }

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(32, 93%, 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 #fab76c

RGB Code Hex Code Preview
rgb(250, 183, 108, 10%) #fab76c1a  
rgb(250, 183, 108, 20%) #fab76c33  
rgb(250, 183, 108, 40%) #fab76c4C  
rgb(250, 183, 108, 60%) #fab76c99  
rgb(250, 183, 108, 80%) #fab76cCC  
rgb(250, 183, 108, 100%) #fab76cFF  

Saturated and desaturated colors of #fab76c

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

#fab76c Color Usage In CSS

 body {
    color: #fab76c;
    }
 p {
    color: rgb(250, 183, 108);
    }
 header {
    border-bottom:1px solid #fab76c;
    }
Recent Random Colors