Random Color Generator

#f5aa7c Color

Color Codes
Hex Code #f5aa7c
RGB Code rgb(245, 170, 124)
HSL Code hsl(23, 86%, 72%)

#f5aa7c Color Syntax

rgb()

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

 main {
    background-color: rgb(245, 170, 124);
   }

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(23, 86%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(245, 170, 124, 10%) #f5aa7c1a  
rgb(245, 170, 124, 20%) #f5aa7c33  
rgb(245, 170, 124, 40%) #f5aa7c4C  
rgb(245, 170, 124, 60%) #f5aa7c99  
rgb(245, 170, 124, 80%) #f5aa7cCC  
rgb(245, 170, 124, 100%) #f5aa7cFF  

Saturated and desaturated colors of #f5aa7c

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

#f5aa7c Color Usage In CSS

 body {
    color: #f5aa7c;
    }
 p {
    color: rgb(245, 170, 124);
    }
 header {
    border-bottom:1px solid #f5aa7c;
    }
Recent Random Colors