Random Color Generator

#538c6f Color

Color Codes
Hex Code #538c6f
RGB Code rgb(83, 140, 111)
HSL Code hsl(149, 26%, 44%)

#538c6f Color Syntax

rgb()

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

 main {
    background-color: rgb(83, 140, 111);
   }

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(149, 26%, 44%);
  }

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 #538c6f

RGB Code Hex Code Preview
rgb(83, 140, 111, 10%) #538c6f1a  
rgb(83, 140, 111, 20%) #538c6f33  
rgb(83, 140, 111, 40%) #538c6f4C  
rgb(83, 140, 111, 60%) #538c6f99  
rgb(83, 140, 111, 80%) #538c6fCC  
rgb(83, 140, 111, 100%) #538c6fFF  

Saturated and desaturated colors of #538c6f

HSL Code Preview
hsl(149, 10%, 44%)  
hsl(149, 20%, 44%)  
hsl(149, 40%, 44%)  
hsl(149, 60%, 44%)  
hsl(149, 80%, 44%)  
hsl(149, 100%, 44%)  

#538c6f Color Usage In CSS

 body {
    color: #538c6f;
    }
 p {
    color: rgb(83, 140, 111);
    }
 header {
    border-bottom:1px solid #538c6f;
    }
Recent Random Colors