Random Color Generator

#f3174a Color

Color Codes
Hex Code #f3174a
RGB Code rgb(243, 23, 74)
HSL Code hsl(346, 90%, 52%)

#f3174a Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 23, 74);
   }

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(346, 90%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(243, 23, 74, 10%) #f3174a1a  
rgb(243, 23, 74, 20%) #f3174a33  
rgb(243, 23, 74, 40%) #f3174a4C  
rgb(243, 23, 74, 60%) #f3174a99  
rgb(243, 23, 74, 80%) #f3174aCC  
rgb(243, 23, 74, 100%) #f3174aFF  

Saturated and desaturated colors of #f3174a

HSL Code Preview
hsl(346, 10%, 52%)  
hsl(346, 20%, 52%)  
hsl(346, 40%, 52%)  
hsl(346, 60%, 52%)  
hsl(346, 80%, 52%)  
hsl(346, 100%, 52%)  

#f3174a Color Usage In CSS

 body {
    color: #f3174a;
    }
 p {
    color: rgb(243, 23, 74);
    }
 header {
    border-bottom:1px solid #f3174a;
    }
Recent Random Colors