Random Color Generator

#f80922 Color

Color Codes
Hex Code #f80922
RGB Code rgb(248, 09, 34)
HSL Code hsl(354, 94%, 50%)

#f80922 Color Syntax

rgb()

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

 main {
    background-color: rgb(248, 09, 34);
   }

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(354, 94%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(248, 09, 34, 10%) #f809221a  
rgb(248, 09, 34, 20%) #f8092233  
rgb(248, 09, 34, 40%) #f809224C  
rgb(248, 09, 34, 60%) #f8092299  
rgb(248, 09, 34, 80%) #f80922CC  
rgb(248, 09, 34, 100%) #f80922FF  

Saturated and desaturated colors of #f80922

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

#f80922 Color Usage In CSS

 body {
    color: #f80922;
    }
 p {
    color: rgb(248, 09, 34);
    }
 header {
    border-bottom:1px solid #f80922;
    }
Recent Random Colors