Random Color Generator

#87404e Color

Color Codes
Hex Code #87404e
RGB Code rgb(135, 64, 78)
HSL Code hsl(348, 36%, 39%)

#87404e Color Syntax

rgb()

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

 main {
    background-color: rgb(135, 64, 78);
   }

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(348, 36%, 39%);
  }

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 #87404e

RGB Code Hex Code Preview
rgb(135, 64, 78, 10%) #87404e1a  
rgb(135, 64, 78, 20%) #87404e33  
rgb(135, 64, 78, 40%) #87404e4C  
rgb(135, 64, 78, 60%) #87404e99  
rgb(135, 64, 78, 80%) #87404eCC  
rgb(135, 64, 78, 100%) #87404eFF  

Saturated and desaturated colors of #87404e

HSL Code Preview
hsl(348, 10%, 39%)  
hsl(348, 20%, 39%)  
hsl(348, 40%, 39%)  
hsl(348, 60%, 39%)  
hsl(348, 80%, 39%)  
hsl(348, 100%, 39%)  

#87404e Color Usage In CSS

 body {
    color: #87404e;
    }
 p {
    color: rgb(135, 64, 78);
    }
 header {
    border-bottom:1px solid #87404e;
    }
Recent Random Colors