Random Color Generator

#f58127 Color

Color Codes
Hex Code #f58127
RGB Code rgb(245, 129, 39)
HSL Code hsl(26, 91%, 56%)

#f58127 Color Syntax

rgb()

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

 main {
    background-color: rgb(245, 129, 39);
   }

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(26, 91%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(245, 129, 39, 10%) #f581271a  
rgb(245, 129, 39, 20%) #f5812733  
rgb(245, 129, 39, 40%) #f581274C  
rgb(245, 129, 39, 60%) #f5812799  
rgb(245, 129, 39, 80%) #f58127CC  
rgb(245, 129, 39, 100%) #f58127FF  

Saturated and desaturated colors of #f58127

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

#f58127 Color Usage In CSS

 body {
    color: #f58127;
    }
 p {
    color: rgb(245, 129, 39);
    }
 header {
    border-bottom:1px solid #f58127;
    }
Recent Random Colors