Random Color Generator

#fb866a Color

Color Codes
Hex Code #fb866a
RGB Code rgb(251, 134, 106)
HSL Code hsl(12, 95%, 70%)

#fb866a Color Syntax

rgb()

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

 main {
    background-color: rgb(251, 134, 106);
   }

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, 95%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(251, 134, 106, 10%) #fb866a1a  
rgb(251, 134, 106, 20%) #fb866a33  
rgb(251, 134, 106, 40%) #fb866a4C  
rgb(251, 134, 106, 60%) #fb866a99  
rgb(251, 134, 106, 80%) #fb866aCC  
rgb(251, 134, 106, 100%) #fb866aFF  

Saturated and desaturated colors of #fb866a

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

#fb866a Color Usage In CSS

 body {
    color: #fb866a;
    }
 p {
    color: rgb(251, 134, 106);
    }
 header {
    border-bottom:1px solid #fb866a;
    }
Recent Random Colors