Random Color Generator

#fda348 Color

Color Codes
Hex Code #fda348
RGB Code rgb(253, 163, 72)
HSL Code hsl(30, 98%, 64%)

#fda348 Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 163, 72);
   }

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

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

RGB Code Hex Code Preview
rgb(253, 163, 72, 10%) #fda3481a  
rgb(253, 163, 72, 20%) #fda34833  
rgb(253, 163, 72, 40%) #fda3484C  
rgb(253, 163, 72, 60%) #fda34899  
rgb(253, 163, 72, 80%) #fda348CC  
rgb(253, 163, 72, 100%) #fda348FF  

Saturated and desaturated colors of #fda348

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

#fda348 Color Usage In CSS

 body {
    color: #fda348;
    }
 p {
    color: rgb(253, 163, 72);
    }
 header {
    border-bottom:1px solid #fda348;
    }
Recent Random Colors