Random Color Generator

#f2c3be Color

Color Codes
Hex Code #f2c3be
RGB Code rgb(242, 195, 190)
HSL Code hsl(6, 67%, 85%)

#f2c3be Color Syntax

rgb()

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

 main {
    background-color: rgb(242, 195, 190);
   }

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(6, 67%, 85%);
  }

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

RGB Code Hex Code Preview
rgb(242, 195, 190, 10%) #f2c3be1a  
rgb(242, 195, 190, 20%) #f2c3be33  
rgb(242, 195, 190, 40%) #f2c3be4C  
rgb(242, 195, 190, 60%) #f2c3be99  
rgb(242, 195, 190, 80%) #f2c3beCC  
rgb(242, 195, 190, 100%) #f2c3beFF  

Saturated and desaturated colors of #f2c3be

HSL Code Preview
hsl(6, 10%, 85%)  
hsl(6, 20%, 85%)  
hsl(6, 40%, 85%)  
hsl(6, 60%, 85%)  
hsl(6, 80%, 85%)  
hsl(6, 100%, 85%)  

#f2c3be Color Usage In CSS

 body {
    color: #f2c3be;
    }
 p {
    color: rgb(242, 195, 190);
    }
 header {
    border-bottom:1px solid #f2c3be;
    }
Recent Random Colors