Random Color Generator

#fa8081 Color

Color Codes
Hex Code #fa8081
RGB Code rgb(250, 128, 129)
HSL Code hsl(360, 92%, 74%)

#fa8081 Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 128, 129);
   }

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(360, 92%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(250, 128, 129, 10%) #fa80811a  
rgb(250, 128, 129, 20%) #fa808133  
rgb(250, 128, 129, 40%) #fa80814C  
rgb(250, 128, 129, 60%) #fa808199  
rgb(250, 128, 129, 80%) #fa8081CC  
rgb(250, 128, 129, 100%) #fa8081FF  

Saturated and desaturated colors of #fa8081

HSL Code Preview
hsl(360, 10%, 74%)  
hsl(360, 20%, 74%)  
hsl(360, 40%, 74%)  
hsl(360, 60%, 74%)  
hsl(360, 80%, 74%)  
hsl(360, 100%, 74%)  

#fa8081 Color Usage In CSS

 body {
    color: #fa8081;
    }
 p {
    color: rgb(250, 128, 129);
    }
 header {
    border-bottom:1px solid #fa8081;
    }
Recent Random Colors