Random Color Generator

#fd0456 Color

Color Codes
Hex Code #fd0456
RGB Code rgb(253, 04, 86)
HSL Code hsl(340, 98%, 50%)

#fd0456 Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 04, 86);
   }

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(340, 98%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(253, 04, 86, 10%) #fd04561a  
rgb(253, 04, 86, 20%) #fd045633  
rgb(253, 04, 86, 40%) #fd04564C  
rgb(253, 04, 86, 60%) #fd045699  
rgb(253, 04, 86, 80%) #fd0456CC  
rgb(253, 04, 86, 100%) #fd0456FF  

Saturated and desaturated colors of #fd0456

HSL Code Preview
hsl(340, 10%, 50%)  
hsl(340, 20%, 50%)  
hsl(340, 40%, 50%)  
hsl(340, 60%, 50%)  
hsl(340, 80%, 50%)  
hsl(340, 100%, 50%)  

#fd0456 Color Usage In CSS

 body {
    color: #fd0456;
    }
 p {
    color: rgb(253, 04, 86);
    }
 header {
    border-bottom:1px solid #fd0456;
    }
Recent Random Colors