Random Color Generator

#f07575 Color

Color Codes
Hex Code #f07575
RGB Code rgb(240, 117, 117)
HSL Code hsl(0, 80%, 70%)

#f07575 Color Syntax

rgb()

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

 main {
    background-color: rgb(240, 117, 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(0, 80%, 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 #f07575

RGB Code Hex Code Preview
rgb(240, 117, 117, 10%) #f075751a  
rgb(240, 117, 117, 20%) #f0757533  
rgb(240, 117, 117, 40%) #f075754C  
rgb(240, 117, 117, 60%) #f0757599  
rgb(240, 117, 117, 80%) #f07575CC  
rgb(240, 117, 117, 100%) #f07575FF  

Saturated and desaturated colors of #f07575

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

#f07575 Color Usage In CSS

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