Random Color Generator

#fcb895 Color

Color Codes
Hex Code #fcb895
RGB Code rgb(252, 184, 149)
HSL Code hsl(20, 94%, 79%)

#fcb895 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 184, 149);
   }

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(20, 94%, 79%);
  }

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

RGB Code Hex Code Preview
rgb(252, 184, 149, 10%) #fcb8951a  
rgb(252, 184, 149, 20%) #fcb89533  
rgb(252, 184, 149, 40%) #fcb8954C  
rgb(252, 184, 149, 60%) #fcb89599  
rgb(252, 184, 149, 80%) #fcb895CC  
rgb(252, 184, 149, 100%) #fcb895FF  

Saturated and desaturated colors of #fcb895

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

#fcb895 Color Usage In CSS

 body {
    color: #fcb895;
    }
 p {
    color: rgb(252, 184, 149);
    }
 header {
    border-bottom:1px solid #fcb895;
    }
Recent Random Colors