Random Color Generator

#fde64b Color

Color Codes
Hex Code #fde64b
RGB Code rgb(253, 230, 75)
HSL Code hsl(52, 98%, 64%)

#fde64b Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 230, 75);
   }

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(52, 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 #fde64b

RGB Code Hex Code Preview
rgb(253, 230, 75, 10%) #fde64b1a  
rgb(253, 230, 75, 20%) #fde64b33  
rgb(253, 230, 75, 40%) #fde64b4C  
rgb(253, 230, 75, 60%) #fde64b99  
rgb(253, 230, 75, 80%) #fde64bCC  
rgb(253, 230, 75, 100%) #fde64bFF  

Saturated and desaturated colors of #fde64b

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

#fde64b Color Usage In CSS

 body {
    color: #fde64b;
    }
 p {
    color: rgb(253, 230, 75);
    }
 header {
    border-bottom:1px solid #fde64b;
    }
Recent Random Colors