Random Color Generator

#f3a52b Color

Color Codes
Hex Code #f3a52b
RGB Code rgb(243, 165, 43)
HSL Code hsl(37, 89%, 56%)

#f3a52b Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 165, 43);
   }

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(37, 89%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(243, 165, 43, 10%) #f3a52b1a  
rgb(243, 165, 43, 20%) #f3a52b33  
rgb(243, 165, 43, 40%) #f3a52b4C  
rgb(243, 165, 43, 60%) #f3a52b99  
rgb(243, 165, 43, 80%) #f3a52bCC  
rgb(243, 165, 43, 100%) #f3a52bFF  

Saturated and desaturated colors of #f3a52b

HSL Code Preview
hsl(37, 10%, 56%)  
hsl(37, 20%, 56%)  
hsl(37, 40%, 56%)  
hsl(37, 60%, 56%)  
hsl(37, 80%, 56%)  
hsl(37, 100%, 56%)  

#f3a52b Color Usage In CSS

 body {
    color: #f3a52b;
    }
 p {
    color: rgb(243, 165, 43);
    }
 header {
    border-bottom:1px solid #f3a52b;
    }
Recent Random Colors