Random Color Generator

#ff760a Color

Color Codes
Hex Code #ff760a
RGB Code rgb(255, 118, 10)
HSL Code hsl(26, 100%, 52%)

#ff760a Color Syntax

rgb()

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

 main {
    background-color: rgb(255, 118, 10);
   }

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, 100%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(255, 118, 10, 10%) #ff760a1a  
rgb(255, 118, 10, 20%) #ff760a33  
rgb(255, 118, 10, 40%) #ff760a4C  
rgb(255, 118, 10, 60%) #ff760a99  
rgb(255, 118, 10, 80%) #ff760aCC  
rgb(255, 118, 10, 100%) #ff760aFF  

Saturated and desaturated colors of #ff760a

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

#ff760a Color Usage In CSS

 body {
    color: #ff760a;
    }
 p {
    color: rgb(255, 118, 10);
    }
 header {
    border-bottom:1px solid #ff760a;
    }
Recent Random Colors