Random Color Generator

#54bf9c Color

Color Codes
Hex Code #54bf9c
RGB Code rgb(84, 191, 156)
HSL Code hsl(160, 46%, 54%)

#54bf9c Color Syntax

rgb()

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

 main {
    background-color: rgb(84, 191, 156);
   }

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(160, 46%, 54%);
  }

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 #54bf9c

RGB Code Hex Code Preview
rgb(84, 191, 156, 10%) #54bf9c1a  
rgb(84, 191, 156, 20%) #54bf9c33  
rgb(84, 191, 156, 40%) #54bf9c4C  
rgb(84, 191, 156, 60%) #54bf9c99  
rgb(84, 191, 156, 80%) #54bf9cCC  
rgb(84, 191, 156, 100%) #54bf9cFF  

Saturated and desaturated colors of #54bf9c

HSL Code Preview
hsl(160, 10%, 54%)  
hsl(160, 20%, 54%)  
hsl(160, 40%, 54%)  
hsl(160, 60%, 54%)  
hsl(160, 80%, 54%)  
hsl(160, 100%, 54%)  

#54bf9c Color Usage In CSS

 body {
    color: #54bf9c;
    }
 p {
    color: rgb(84, 191, 156);
    }
 header {
    border-bottom:1px solid #54bf9c;
    }
Recent Random Colors