Random Color Generator

#fc755d Color

Color Codes
Hex Code #fc755d
RGB Code rgb(252, 117, 93)
HSL Code hsl(9, 96%, 68%)

#fc755d Color Syntax

rgb()

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

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

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(9, 96%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(252, 117, 93, 10%) #fc755d1a  
rgb(252, 117, 93, 20%) #fc755d33  
rgb(252, 117, 93, 40%) #fc755d4C  
rgb(252, 117, 93, 60%) #fc755d99  
rgb(252, 117, 93, 80%) #fc755dCC  
rgb(252, 117, 93, 100%) #fc755dFF  

Saturated and desaturated colors of #fc755d

HSL Code Preview
hsl(9, 10%, 68%)  
hsl(9, 20%, 68%)  
hsl(9, 40%, 68%)  
hsl(9, 60%, 68%)  
hsl(9, 80%, 68%)  
hsl(9, 100%, 68%)  

#fc755d Color Usage In CSS

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