Random Color Generator

#f5fab4 Color

Color Codes
Hex Code #f5fab4
RGB Code rgb(245, 250, 180)
HSL Code hsl(64, 88%, 84%)

#f5fab4 Color Syntax

rgb()

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

 main {
    background-color: rgb(245, 250, 180);
   }

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

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

RGB Code Hex Code Preview
rgb(245, 250, 180, 10%) #f5fab41a  
rgb(245, 250, 180, 20%) #f5fab433  
rgb(245, 250, 180, 40%) #f5fab44C  
rgb(245, 250, 180, 60%) #f5fab499  
rgb(245, 250, 180, 80%) #f5fab4CC  
rgb(245, 250, 180, 100%) #f5fab4FF  

Saturated and desaturated colors of #f5fab4

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

#f5fab4 Color Usage In CSS

 body {
    color: #f5fab4;
    }
 p {
    color: rgb(245, 250, 180);
    }
 header {
    border-bottom:1px solid #f5fab4;
    }
Recent Random Colors