Random Color Generator

#f3094d Color

Color Codes
Hex Code #f3094d
RGB Code rgb(243, 09, 77)
HSL Code hsl(343, 93%, 49%)

#f3094d Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 09, 77);
   }

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(343, 93%, 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 #f3094d

RGB Code Hex Code Preview
rgb(243, 09, 77, 10%) #f3094d1a  
rgb(243, 09, 77, 20%) #f3094d33  
rgb(243, 09, 77, 40%) #f3094d4C  
rgb(243, 09, 77, 60%) #f3094d99  
rgb(243, 09, 77, 80%) #f3094dCC  
rgb(243, 09, 77, 100%) #f3094dFF  

Saturated and desaturated colors of #f3094d

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

#f3094d Color Usage In CSS

 body {
    color: #f3094d;
    }
 p {
    color: rgb(243, 09, 77);
    }
 header {
    border-bottom:1px solid #f3094d;
    }
Recent Random Colors