Random Color Generator

#ff7d5b Color

Color Codes
Hex Code #ff7d5b
RGB Code rgb(255, 125, 91)
HSL Code hsl(12, 100%, 68%)

#ff7d5b Color Syntax

rgb()

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

 main {
    background-color: rgb(255, 125, 91);
   }

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(12, 100%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(255, 125, 91, 10%) #ff7d5b1a  
rgb(255, 125, 91, 20%) #ff7d5b33  
rgb(255, 125, 91, 40%) #ff7d5b4C  
rgb(255, 125, 91, 60%) #ff7d5b99  
rgb(255, 125, 91, 80%) #ff7d5bCC  
rgb(255, 125, 91, 100%) #ff7d5bFF  

Saturated and desaturated colors of #ff7d5b

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

#ff7d5b Color Usage In CSS

 body {
    color: #ff7d5b;
    }
 p {
    color: rgb(255, 125, 91);
    }
 header {
    border-bottom:1px solid #ff7d5b;
    }
Recent Random Colors