Random Color Generator

#f6b27c Color

Color Codes
Hex Code #f6b27c
RGB Code rgb(246, 178, 124)
HSL Code hsl(27, 87%, 73%)

#f6b27c Color Syntax

rgb()

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

 main {
    background-color: rgb(246, 178, 124);
   }

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(27, 87%, 73%);
  }

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

RGB Code Hex Code Preview
rgb(246, 178, 124, 10%) #f6b27c1a  
rgb(246, 178, 124, 20%) #f6b27c33  
rgb(246, 178, 124, 40%) #f6b27c4C  
rgb(246, 178, 124, 60%) #f6b27c99  
rgb(246, 178, 124, 80%) #f6b27cCC  
rgb(246, 178, 124, 100%) #f6b27cFF  

Saturated and desaturated colors of #f6b27c

HSL Code Preview
hsl(27, 10%, 73%)  
hsl(27, 20%, 73%)  
hsl(27, 40%, 73%)  
hsl(27, 60%, 73%)  
hsl(27, 80%, 73%)  
hsl(27, 100%, 73%)  

#f6b27c Color Usage In CSS

 body {
    color: #f6b27c;
    }
 p {
    color: rgb(246, 178, 124);
    }
 header {
    border-bottom:1px solid #f6b27c;
    }
Recent Random Colors