Random Color Generator

#8e3044 Color

Color Codes
Hex Code #8e3044
RGB Code rgb(142, 48, 68)
HSL Code hsl(347, 49%, 37%)

#8e3044 Color Syntax

rgb()

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

 main {
    background-color: rgb(142, 48, 68);
   }

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(347, 49%, 37%);
  }

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 #8e3044

RGB Code Hex Code Preview
rgb(142, 48, 68, 10%) #8e30441a  
rgb(142, 48, 68, 20%) #8e304433  
rgb(142, 48, 68, 40%) #8e30444C  
rgb(142, 48, 68, 60%) #8e304499  
rgb(142, 48, 68, 80%) #8e3044CC  
rgb(142, 48, 68, 100%) #8e3044FF  

Saturated and desaturated colors of #8e3044

HSL Code Preview
hsl(347, 10%, 37%)  
hsl(347, 20%, 37%)  
hsl(347, 40%, 37%)  
hsl(347, 60%, 37%)  
hsl(347, 80%, 37%)  
hsl(347, 100%, 37%)  

#8e3044 Color Usage In CSS

 body {
    color: #8e3044;
    }
 p {
    color: rgb(142, 48, 68);
    }
 header {
    border-bottom:1px solid #8e3044;
    }
Recent Random Colors