Random Color Generator

#f82094 Color

Color Codes
Hex Code #f82094
RGB Code rgb(248, 32, 148)
HSL Code hsl(328, 94%, 55%)

#f82094 Color Syntax

rgb()

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

 main {
    background-color: rgb(248, 32, 148);
   }

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(328, 94%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(248, 32, 148, 10%) #f820941a  
rgb(248, 32, 148, 20%) #f8209433  
rgb(248, 32, 148, 40%) #f820944C  
rgb(248, 32, 148, 60%) #f8209499  
rgb(248, 32, 148, 80%) #f82094CC  
rgb(248, 32, 148, 100%) #f82094FF  

Saturated and desaturated colors of #f82094

HSL Code Preview
hsl(328, 10%, 55%)  
hsl(328, 20%, 55%)  
hsl(328, 40%, 55%)  
hsl(328, 60%, 55%)  
hsl(328, 80%, 55%)  
hsl(328, 100%, 55%)  

#f82094 Color Usage In CSS

 body {
    color: #f82094;
    }
 p {
    color: rgb(248, 32, 148);
    }
 header {
    border-bottom:1px solid #f82094;
    }
Recent Random Colors