Random Color Generator

#fca075 Color

Color Codes
Hex Code #fca075
RGB Code rgb(252, 160, 117)
HSL Code hsl(19, 96%, 72%)

#fca075 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 160, 117);
   }

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(19, 96%, 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 #fca075

RGB Code Hex Code Preview
rgb(252, 160, 117, 10%) #fca0751a  
rgb(252, 160, 117, 20%) #fca07533  
rgb(252, 160, 117, 40%) #fca0754C  
rgb(252, 160, 117, 60%) #fca07599  
rgb(252, 160, 117, 80%) #fca075CC  
rgb(252, 160, 117, 100%) #fca075FF  

Saturated and desaturated colors of #fca075

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

#fca075 Color Usage In CSS

 body {
    color: #fca075;
    }
 p {
    color: rgb(252, 160, 117);
    }
 header {
    border-bottom:1px solid #fca075;
    }
Recent Random Colors