Random Color Generator

#fde225 Color

Color Codes
Hex Code #fde225
RGB Code rgb(253, 226, 37)
HSL Code hsl(53, 98%, 57%)

#fde225 Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 226, 37);
   }

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(53, 98%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(253, 226, 37, 10%) #fde2251a  
rgb(253, 226, 37, 20%) #fde22533  
rgb(253, 226, 37, 40%) #fde2254C  
rgb(253, 226, 37, 60%) #fde22599  
rgb(253, 226, 37, 80%) #fde225CC  
rgb(253, 226, 37, 100%) #fde225FF  

Saturated and desaturated colors of #fde225

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

#fde225 Color Usage In CSS

 body {
    color: #fde225;
    }
 p {
    color: rgb(253, 226, 37);
    }
 header {
    border-bottom:1px solid #fde225;
    }
Recent Random Colors