Random Color Generator

#506144 Color

Color Codes
Hex Code #506144
RGB Code rgb(80, 97, 68)
HSL Code hsl(95, 18%, 32%)

#506144 Color Syntax

rgb()

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

 main {
    background-color: rgb(80, 97, 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(95, 18%, 32%);
  }

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

RGB Code Hex Code Preview
rgb(80, 97, 68, 10%) #5061441a  
rgb(80, 97, 68, 20%) #50614433  
rgb(80, 97, 68, 40%) #5061444C  
rgb(80, 97, 68, 60%) #50614499  
rgb(80, 97, 68, 80%) #506144CC  
rgb(80, 97, 68, 100%) #506144FF  

Saturated and desaturated colors of #506144

HSL Code Preview
hsl(95, 10%, 32%)  
hsl(95, 20%, 32%)  
hsl(95, 40%, 32%)  
hsl(95, 60%, 32%)  
hsl(95, 80%, 32%)  
hsl(95, 100%, 32%)  

#506144 Color Usage In CSS

 body {
    color: #506144;
    }
 p {
    color: rgb(80, 97, 68);
    }
 header {
    border-bottom:1px solid #506144;
    }
Recent Random Colors