Random Color Generator

#f32385 Color

Color Codes
Hex Code #f32385
RGB Code rgb(243, 35, 133)
HSL Code hsl(332, 90%, 55%)

#f32385 Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 35, 133);
   }

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(332, 90%, 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 #f32385

RGB Code Hex Code Preview
rgb(243, 35, 133, 10%) #f323851a  
rgb(243, 35, 133, 20%) #f3238533  
rgb(243, 35, 133, 40%) #f323854C  
rgb(243, 35, 133, 60%) #f3238599  
rgb(243, 35, 133, 80%) #f32385CC  
rgb(243, 35, 133, 100%) #f32385FF  

Saturated and desaturated colors of #f32385

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

#f32385 Color Usage In CSS

 body {
    color: #f32385;
    }
 p {
    color: rgb(243, 35, 133);
    }
 header {
    border-bottom:1px solid #f32385;
    }
Recent Random Colors