Random Color Generator

#0a503d Color

Color Codes
Hex Code #0a503d
RGB Code rgb(10, 80, 61)
HSL Code hsl(164, 78%, 18%)

#0a503d Color Syntax

rgb()

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

 main {
    background-color: rgb(10, 80, 61);
   }

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(164, 78%, 18%);
  }

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 #0a503d

RGB Code Hex Code Preview
rgb(10, 80, 61, 10%) #0a503d1a  
rgb(10, 80, 61, 20%) #0a503d33  
rgb(10, 80, 61, 40%) #0a503d4C  
rgb(10, 80, 61, 60%) #0a503d99  
rgb(10, 80, 61, 80%) #0a503dCC  
rgb(10, 80, 61, 100%) #0a503dFF  

Saturated and desaturated colors of #0a503d

HSL Code Preview
hsl(164, 10%, 18%)  
hsl(164, 20%, 18%)  
hsl(164, 40%, 18%)  
hsl(164, 60%, 18%)  
hsl(164, 80%, 18%)  
hsl(164, 100%, 18%)  

#0a503d Color Usage In CSS

 body {
    color: #0a503d;
    }
 p {
    color: rgb(10, 80, 61);
    }
 header {
    border-bottom:1px solid #0a503d;
    }
Recent Random Colors