Random Color Generator

#d81b4f Color

Color Codes
Hex Code #d81b4f
RGB Code rgb(216, 27, 79)
HSL Code hsl(343, 78%, 48%)

#d81b4f Color Syntax

rgb()

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

 main {
    background-color: rgb(216, 27, 79);
   }

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, 78%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(216, 27, 79, 10%) #d81b4f1a  
rgb(216, 27, 79, 20%) #d81b4f33  
rgb(216, 27, 79, 40%) #d81b4f4C  
rgb(216, 27, 79, 60%) #d81b4f99  
rgb(216, 27, 79, 80%) #d81b4fCC  
rgb(216, 27, 79, 100%) #d81b4fFF  

Saturated and desaturated colors of #d81b4f

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

#d81b4f Color Usage In CSS

 body {
    color: #d81b4f;
    }
 p {
    color: rgb(216, 27, 79);
    }
 header {
    border-bottom:1px solid #d81b4f;
    }
Recent Random Colors