Random Color Generator

#f5a960 Color

Color Codes
Hex Code #f5a960
RGB Code rgb(245, 169, 96)
HSL Code hsl(29, 88%, 67%)

#f5a960 Color Syntax

rgb()

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

 main {
    background-color: rgb(245, 169, 96);
   }

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(29, 88%, 67%);
  }

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

RGB Code Hex Code Preview
rgb(245, 169, 96, 10%) #f5a9601a  
rgb(245, 169, 96, 20%) #f5a96033  
rgb(245, 169, 96, 40%) #f5a9604C  
rgb(245, 169, 96, 60%) #f5a96099  
rgb(245, 169, 96, 80%) #f5a960CC  
rgb(245, 169, 96, 100%) #f5a960FF  

Saturated and desaturated colors of #f5a960

HSL Code Preview
hsl(29, 10%, 67%)  
hsl(29, 20%, 67%)  
hsl(29, 40%, 67%)  
hsl(29, 60%, 67%)  
hsl(29, 80%, 67%)  
hsl(29, 100%, 67%)  

#f5a960 Color Usage In CSS

 body {
    color: #f5a960;
    }
 p {
    color: rgb(245, 169, 96);
    }
 header {
    border-bottom:1px solid #f5a960;
    }
Recent Random Colors