Random Color Generator

#f35a4f Color

Color Codes
Hex Code #f35a4f
RGB Code rgb(243, 90, 79)
HSL Code hsl(4, 87%, 63%)

#f35a4f Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 90, 79);
   }

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(4, 87%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(243, 90, 79, 10%) #f35a4f1a  
rgb(243, 90, 79, 20%) #f35a4f33  
rgb(243, 90, 79, 40%) #f35a4f4C  
rgb(243, 90, 79, 60%) #f35a4f99  
rgb(243, 90, 79, 80%) #f35a4fCC  
rgb(243, 90, 79, 100%) #f35a4fFF  

Saturated and desaturated colors of #f35a4f

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

#f35a4f Color Usage In CSS

 body {
    color: #f35a4f;
    }
 p {
    color: rgb(243, 90, 79);
    }
 header {
    border-bottom:1px solid #f35a4f;
    }
Recent Random Colors