Random Color Generator

#f1d5b9 Color

Color Codes
Hex Code #f1d5b9
RGB Code rgb(241, 213, 185)
HSL Code hsl(30, 67%, 84%)

#f1d5b9 Color Syntax

rgb()

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

 main {
    background-color: rgb(241, 213, 185);
   }

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(30, 67%, 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 #f1d5b9

RGB Code Hex Code Preview
rgb(241, 213, 185, 10%) #f1d5b91a  
rgb(241, 213, 185, 20%) #f1d5b933  
rgb(241, 213, 185, 40%) #f1d5b94C  
rgb(241, 213, 185, 60%) #f1d5b999  
rgb(241, 213, 185, 80%) #f1d5b9CC  
rgb(241, 213, 185, 100%) #f1d5b9FF  

Saturated and desaturated colors of #f1d5b9

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

#f1d5b9 Color Usage In CSS

 body {
    color: #f1d5b9;
    }
 p {
    color: rgb(241, 213, 185);
    }
 header {
    border-bottom:1px solid #f1d5b9;
    }
Recent Random Colors