Random Color Generator

#f5ad55 Color

Color Codes
Hex Code #f5ad55
RGB Code rgb(245, 173, 85)
HSL Code hsl(33, 89%, 65%)

#f5ad55 Color Syntax

rgb()

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

 main {
    background-color: rgb(245, 173, 85);
   }

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(33, 89%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(245, 173, 85, 10%) #f5ad551a  
rgb(245, 173, 85, 20%) #f5ad5533  
rgb(245, 173, 85, 40%) #f5ad554C  
rgb(245, 173, 85, 60%) #f5ad5599  
rgb(245, 173, 85, 80%) #f5ad55CC  
rgb(245, 173, 85, 100%) #f5ad55FF  

Saturated and desaturated colors of #f5ad55

HSL Code Preview
hsl(33, 10%, 65%)  
hsl(33, 20%, 65%)  
hsl(33, 40%, 65%)  
hsl(33, 60%, 65%)  
hsl(33, 80%, 65%)  
hsl(33, 100%, 65%)  

#f5ad55 Color Usage In CSS

 body {
    color: #f5ad55;
    }
 p {
    color: rgb(245, 173, 85);
    }
 header {
    border-bottom:1px solid #f5ad55;
    }
Recent Random Colors