Random Color Generator

#f48570 Color

Color Codes
Hex Code #f48570
RGB Code rgb(244, 133, 112)
HSL Code hsl(10, 86%, 70%)

#f48570 Color Syntax

rgb()

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

 main {
    background-color: rgb(244, 133, 112);
   }

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(10, 86%, 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 #f48570

RGB Code Hex Code Preview
rgb(244, 133, 112, 10%) #f485701a  
rgb(244, 133, 112, 20%) #f4857033  
rgb(244, 133, 112, 40%) #f485704C  
rgb(244, 133, 112, 60%) #f4857099  
rgb(244, 133, 112, 80%) #f48570CC  
rgb(244, 133, 112, 100%) #f48570FF  

Saturated and desaturated colors of #f48570

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

#f48570 Color Usage In CSS

 body {
    color: #f48570;
    }
 p {
    color: rgb(244, 133, 112);
    }
 header {
    border-bottom:1px solid #f48570;
    }
Recent Random Colors