Random Color Generator

#f3079d Color

Color Codes
Hex Code #f3079d
RGB Code rgb(243, 07, 157)
HSL Code hsl(322, 94%, 49%)

#f3079d Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 07, 157);
   }

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(322, 94%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(243, 07, 157, 10%) #f3079d1a  
rgb(243, 07, 157, 20%) #f3079d33  
rgb(243, 07, 157, 40%) #f3079d4C  
rgb(243, 07, 157, 60%) #f3079d99  
rgb(243, 07, 157, 80%) #f3079dCC  
rgb(243, 07, 157, 100%) #f3079dFF  

Saturated and desaturated colors of #f3079d

HSL Code Preview
hsl(322, 10%, 49%)  
hsl(322, 20%, 49%)  
hsl(322, 40%, 49%)  
hsl(322, 60%, 49%)  
hsl(322, 80%, 49%)  
hsl(322, 100%, 49%)  

#f3079d Color Usage In CSS

 body {
    color: #f3079d;
    }
 p {
    color: rgb(243, 07, 157);
    }
 header {
    border-bottom:1px solid #f3079d;
    }
Recent Random Colors