Random Color Generator

#f85fc3 Color

Color Codes
Hex Code #f85fc3
RGB Code rgb(248, 95, 195)
HSL Code hsl(321, 92%, 67%)

#f85fc3 Color Syntax

rgb()

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

 main {
    background-color: rgb(248, 95, 195);
   }

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(321, 92%, 67%);
  }

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

RGB Code Hex Code Preview
rgb(248, 95, 195, 10%) #f85fc31a  
rgb(248, 95, 195, 20%) #f85fc333  
rgb(248, 95, 195, 40%) #f85fc34C  
rgb(248, 95, 195, 60%) #f85fc399  
rgb(248, 95, 195, 80%) #f85fc3CC  
rgb(248, 95, 195, 100%) #f85fc3FF  

Saturated and desaturated colors of #f85fc3

HSL Code Preview
hsl(321, 10%, 67%)  
hsl(321, 20%, 67%)  
hsl(321, 40%, 67%)  
hsl(321, 60%, 67%)  
hsl(321, 80%, 67%)  
hsl(321, 100%, 67%)  

#f85fc3 Color Usage In CSS

 body {
    color: #f85fc3;
    }
 p {
    color: rgb(248, 95, 195);
    }
 header {
    border-bottom:1px solid #f85fc3;
    }
Recent Random Colors