Random Color Generator

#fd6686 Color

Color Codes
Hex Code #fd6686
RGB Code rgb(253, 102, 134)
HSL Code hsl(347, 97%, 70%)

#fd6686 Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 102, 134);
   }

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(347, 97%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(253, 102, 134, 10%) #fd66861a  
rgb(253, 102, 134, 20%) #fd668633  
rgb(253, 102, 134, 40%) #fd66864C  
rgb(253, 102, 134, 60%) #fd668699  
rgb(253, 102, 134, 80%) #fd6686CC  
rgb(253, 102, 134, 100%) #fd6686FF  

Saturated and desaturated colors of #fd6686

HSL Code Preview
hsl(347, 10%, 70%)  
hsl(347, 20%, 70%)  
hsl(347, 40%, 70%)  
hsl(347, 60%, 70%)  
hsl(347, 80%, 70%)  
hsl(347, 100%, 70%)  

#fd6686 Color Usage In CSS

 body {
    color: #fd6686;
    }
 p {
    color: rgb(253, 102, 134);
    }
 header {
    border-bottom:1px solid #fd6686;
    }
Recent Random Colors