Random Color Generator

#f07841 Color

Color Codes
Hex Code #f07841
RGB Code rgb(240, 120, 65)
HSL Code hsl(19, 85%, 60%)

#f07841 Color Syntax

rgb()

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

 main {
    background-color: rgb(240, 120, 65);
   }

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(19, 85%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(240, 120, 65, 10%) #f078411a  
rgb(240, 120, 65, 20%) #f0784133  
rgb(240, 120, 65, 40%) #f078414C  
rgb(240, 120, 65, 60%) #f0784199  
rgb(240, 120, 65, 80%) #f07841CC  
rgb(240, 120, 65, 100%) #f07841FF  

Saturated and desaturated colors of #f07841

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

#f07841 Color Usage In CSS

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