Random Color Generator

#38ca45 Color

Color Codes
Hex Code #38ca45
RGB Code rgb(56, 202, 69)
HSL Code hsl(125, 58%, 51%)

#38ca45 Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 202, 69);
   }

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(125, 58%, 51%);
  }

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 #38ca45

RGB Code Hex Code Preview
rgb(56, 202, 69, 10%) #38ca451a  
rgb(56, 202, 69, 20%) #38ca4533  
rgb(56, 202, 69, 40%) #38ca454C  
rgb(56, 202, 69, 60%) #38ca4599  
rgb(56, 202, 69, 80%) #38ca45CC  
rgb(56, 202, 69, 100%) #38ca45FF  

Saturated and desaturated colors of #38ca45

HSL Code Preview
hsl(125, 10%, 51%)  
hsl(125, 20%, 51%)  
hsl(125, 40%, 51%)  
hsl(125, 60%, 51%)  
hsl(125, 80%, 51%)  
hsl(125, 100%, 51%)  

#38ca45 Color Usage In CSS

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