Random Color Generator

#fda245 Color

Color Codes
Hex Code #fda245
RGB Code rgb(253, 162, 69)
HSL Code hsl(30, 98%, 63%)

#fda245 Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 162, 69);
   }

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(30, 98%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(253, 162, 69, 10%) #fda2451a  
rgb(253, 162, 69, 20%) #fda24533  
rgb(253, 162, 69, 40%) #fda2454C  
rgb(253, 162, 69, 60%) #fda24599  
rgb(253, 162, 69, 80%) #fda245CC  
rgb(253, 162, 69, 100%) #fda245FF  

Saturated and desaturated colors of #fda245

HSL Code Preview
hsl(30, 10%, 63%)  
hsl(30, 20%, 63%)  
hsl(30, 40%, 63%)  
hsl(30, 60%, 63%)  
hsl(30, 80%, 63%)  
hsl(30, 100%, 63%)  

#fda245 Color Usage In CSS

 body {
    color: #fda245;
    }
 p {
    color: rgb(253, 162, 69);
    }
 header {
    border-bottom:1px solid #fda245;
    }
Recent Random Colors