Random Color Generator

#f1b50a Color

Color Codes
Hex Code #f1b50a
RGB Code rgb(241, 181, 10)
HSL Code hsl(44, 92%, 49%)

#f1b50a Color Syntax

rgb()

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

 main {
    background-color: rgb(241, 181, 10);
   }

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(44, 92%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(241, 181, 10, 10%) #f1b50a1a  
rgb(241, 181, 10, 20%) #f1b50a33  
rgb(241, 181, 10, 40%) #f1b50a4C  
rgb(241, 181, 10, 60%) #f1b50a99  
rgb(241, 181, 10, 80%) #f1b50aCC  
rgb(241, 181, 10, 100%) #f1b50aFF  

Saturated and desaturated colors of #f1b50a

HSL Code Preview
hsl(44, 10%, 49%)  
hsl(44, 20%, 49%)  
hsl(44, 40%, 49%)  
hsl(44, 60%, 49%)  
hsl(44, 80%, 49%)  
hsl(44, 100%, 49%)  

#f1b50a Color Usage In CSS

 body {
    color: #f1b50a;
    }
 p {
    color: rgb(241, 181, 10);
    }
 header {
    border-bottom:1px solid #f1b50a;
    }
Recent Random Colors