Random Color Generator

#38655a Color

Color Codes
Hex Code #38655a
RGB Code rgb(56, 101, 90)
HSL Code hsl(165, 29%, 31%)

#38655a Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 101, 90);
   }

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(165, 29%, 31%);
  }

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 #38655a

RGB Code Hex Code Preview
rgb(56, 101, 90, 10%) #38655a1a  
rgb(56, 101, 90, 20%) #38655a33  
rgb(56, 101, 90, 40%) #38655a4C  
rgb(56, 101, 90, 60%) #38655a99  
rgb(56, 101, 90, 80%) #38655aCC  
rgb(56, 101, 90, 100%) #38655aFF  

Saturated and desaturated colors of #38655a

HSL Code Preview
hsl(165, 10%, 31%)  
hsl(165, 20%, 31%)  
hsl(165, 40%, 31%)  
hsl(165, 60%, 31%)  
hsl(165, 80%, 31%)  
hsl(165, 100%, 31%)  

#38655a Color Usage In CSS

 body {
    color: #38655a;
    }
 p {
    color: rgb(56, 101, 90);
    }
 header {
    border-bottom:1px solid #38655a;
    }
Recent Random Colors