Random Color Generator

#fdeba3 Color

Color Codes
Hex Code #fdeba3
RGB Code rgb(253, 235, 163)
HSL Code hsl(48, 96%, 82%)

#fdeba3 Color Syntax

rgb()

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

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

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(48, 96%, 82%);
  }

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

RGB Code Hex Code Preview
rgb(253, 235, 163, 10%) #fdeba31a  
rgb(253, 235, 163, 20%) #fdeba333  
rgb(253, 235, 163, 40%) #fdeba34C  
rgb(253, 235, 163, 60%) #fdeba399  
rgb(253, 235, 163, 80%) #fdeba3CC  
rgb(253, 235, 163, 100%) #fdeba3FF  

Saturated and desaturated colors of #fdeba3

HSL Code Preview
hsl(48, 10%, 82%)  
hsl(48, 20%, 82%)  
hsl(48, 40%, 82%)  
hsl(48, 60%, 82%)  
hsl(48, 80%, 82%)  
hsl(48, 100%, 82%)  

#fdeba3 Color Usage In CSS

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