Random Color Generator

#0d362b Color

Color Codes
Hex Code #0d362b
RGB Code rgb(13, 54, 43)
HSL Code hsl(164, 61%, 13%)

#0d362b Color Syntax

rgb()

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

 main {
    background-color: rgb(13, 54, 43);
   }

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, 61%, 13%);
  }

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

RGB Code Hex Code Preview
rgb(13, 54, 43, 10%) #0d362b1a  
rgb(13, 54, 43, 20%) #0d362b33  
rgb(13, 54, 43, 40%) #0d362b4C  
rgb(13, 54, 43, 60%) #0d362b99  
rgb(13, 54, 43, 80%) #0d362bCC  
rgb(13, 54, 43, 100%) #0d362bFF  

Saturated and desaturated colors of #0d362b

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

#0d362b Color Usage In CSS

 body {
    color: #0d362b;
    }
 p {
    color: rgb(13, 54, 43);
    }
 header {
    border-bottom:1px solid #0d362b;
    }
Recent Random Colors