Random Color Generator

#fbdc85 Color

Color Codes
Hex Code #fbdc85
RGB Code rgb(251, 220, 133)
HSL Code hsl(44, 94%, 75%)

#fbdc85 Color Syntax

rgb()

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

 main {
    background-color: rgb(251, 220, 133);
   }

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(44, 94%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(251, 220, 133, 10%) #fbdc851a  
rgb(251, 220, 133, 20%) #fbdc8533  
rgb(251, 220, 133, 40%) #fbdc854C  
rgb(251, 220, 133, 60%) #fbdc8599  
rgb(251, 220, 133, 80%) #fbdc85CC  
rgb(251, 220, 133, 100%) #fbdc85FF  

Saturated and desaturated colors of #fbdc85

HSL Code Preview
hsl(44, 10%, 75%)  
hsl(44, 20%, 75%)  
hsl(44, 40%, 75%)  
hsl(44, 60%, 75%)  
hsl(44, 80%, 75%)  
hsl(44, 100%, 75%)  

#fbdc85 Color Usage In CSS

 body {
    color: #fbdc85;
    }
 p {
    color: rgb(251, 220, 133);
    }
 header {
    border-bottom:1px solid #fbdc85;
    }
Recent Random Colors