Random Color Generator

#f8bfc4 Color

Color Codes
Hex Code #f8bfc4
RGB Code rgb(248, 191, 196)
HSL Code hsl(355, 80%, 86%)

#f8bfc4 Color Syntax

rgb()

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

 main {
    background-color: rgb(248, 191, 196);
   }

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(355, 80%, 86%);
  }

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

RGB Code Hex Code Preview
rgb(248, 191, 196, 10%) #f8bfc41a  
rgb(248, 191, 196, 20%) #f8bfc433  
rgb(248, 191, 196, 40%) #f8bfc44C  
rgb(248, 191, 196, 60%) #f8bfc499  
rgb(248, 191, 196, 80%) #f8bfc4CC  
rgb(248, 191, 196, 100%) #f8bfc4FF  

Saturated and desaturated colors of #f8bfc4

HSL Code Preview
hsl(355, 10%, 86%)  
hsl(355, 20%, 86%)  
hsl(355, 40%, 86%)  
hsl(355, 60%, 86%)  
hsl(355, 80%, 86%)  
hsl(355, 100%, 86%)  

#f8bfc4 Color Usage In CSS

 body {
    color: #f8bfc4;
    }
 p {
    color: rgb(248, 191, 196);
    }
 header {
    border-bottom:1px solid #f8bfc4;
    }
Recent Random Colors