Random Color Generator

#fba086 Color

Color Codes
Hex Code #fba086
RGB Code rgb(251, 160, 134)
HSL Code hsl(13, 94%, 75%)

#fba086 Color Syntax

rgb()

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

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

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(13, 94%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(251, 160, 134, 10%) #fba0861a  
rgb(251, 160, 134, 20%) #fba08633  
rgb(251, 160, 134, 40%) #fba0864C  
rgb(251, 160, 134, 60%) #fba08699  
rgb(251, 160, 134, 80%) #fba086CC  
rgb(251, 160, 134, 100%) #fba086FF  

Saturated and desaturated colors of #fba086

HSL Code Preview
hsl(13, 10%, 75%)  
hsl(13, 20%, 75%)  
hsl(13, 40%, 75%)  
hsl(13, 60%, 75%)  
hsl(13, 80%, 75%)  
hsl(13, 100%, 75%)  

#fba086 Color Usage In CSS

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