Random Color Generator

#38a880 Color

Color Codes
Hex Code #38a880
RGB Code rgb(56, 168, 128)
HSL Code hsl(159, 50%, 44%)

#38a880 Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 168, 128);
   }

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(159, 50%, 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 #38a880

RGB Code Hex Code Preview
rgb(56, 168, 128, 10%) #38a8801a  
rgb(56, 168, 128, 20%) #38a88033  
rgb(56, 168, 128, 40%) #38a8804C  
rgb(56, 168, 128, 60%) #38a88099  
rgb(56, 168, 128, 80%) #38a880CC  
rgb(56, 168, 128, 100%) #38a880FF  

Saturated and desaturated colors of #38a880

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

#38a880 Color Usage In CSS

 body {
    color: #38a880;
    }
 p {
    color: rgb(56, 168, 128);
    }
 header {
    border-bottom:1px solid #38a880;
    }
Recent Random Colors