Random Color Generator

#fd68ed Color

Color Codes
Hex Code #fd68ed
RGB Code rgb(253, 104, 237)
HSL Code hsl(306, 97%, 70%)

#fd68ed Color Syntax

rgb()

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

 main {
    background-color: rgb(253, 104, 237);
   }

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(306, 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 #fd68ed

RGB Code Hex Code Preview
rgb(253, 104, 237, 10%) #fd68ed1a  
rgb(253, 104, 237, 20%) #fd68ed33  
rgb(253, 104, 237, 40%) #fd68ed4C  
rgb(253, 104, 237, 60%) #fd68ed99  
rgb(253, 104, 237, 80%) #fd68edCC  
rgb(253, 104, 237, 100%) #fd68edFF  

Saturated and desaturated colors of #fd68ed

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

#fd68ed Color Usage In CSS

 body {
    color: #fd68ed;
    }
 p {
    color: rgb(253, 104, 237);
    }
 header {
    border-bottom:1px solid #fd68ed;
    }
Recent Random Colors