Random Color Generator

#f1b91c Color

Color Codes
Hex Code #f1b91c
RGB Code rgb(241, 185, 28)
HSL Code hsl(44, 88%, 53%)

#f1b91c Color Syntax

rgb()

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

 main {
    background-color: rgb(241, 185, 28);
   }

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, 88%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(241, 185, 28, 10%) #f1b91c1a  
rgb(241, 185, 28, 20%) #f1b91c33  
rgb(241, 185, 28, 40%) #f1b91c4C  
rgb(241, 185, 28, 60%) #f1b91c99  
rgb(241, 185, 28, 80%) #f1b91cCC  
rgb(241, 185, 28, 100%) #f1b91cFF  

Saturated and desaturated colors of #f1b91c

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

#f1b91c Color Usage In CSS

 body {
    color: #f1b91c;
    }
 p {
    color: rgb(241, 185, 28);
    }
 header {
    border-bottom:1px solid #f1b91c;
    }
Recent Random Colors