Random Color Generator

#03876d Color

Color Codes
Hex Code #03876d
RGB Code rgb(03, 135, 109)
HSL Code hsl(168, 96%, 27%)

#03876d Color Syntax

rgb()

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

 main {
    background-color: rgb(03, 135, 109);
   }

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(168, 96%, 27%);
  }

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 #03876d

RGB Code Hex Code Preview
rgb(03, 135, 109, 10%) #03876d1a  
rgb(03, 135, 109, 20%) #03876d33  
rgb(03, 135, 109, 40%) #03876d4C  
rgb(03, 135, 109, 60%) #03876d99  
rgb(03, 135, 109, 80%) #03876dCC  
rgb(03, 135, 109, 100%) #03876dFF  

Saturated and desaturated colors of #03876d

HSL Code Preview
hsl(168, 10%, 27%)  
hsl(168, 20%, 27%)  
hsl(168, 40%, 27%)  
hsl(168, 60%, 27%)  
hsl(168, 80%, 27%)  
hsl(168, 100%, 27%)  

#03876d Color Usage In CSS

 body {
    color: #03876d;
    }
 p {
    color: rgb(03, 135, 109);
    }
 header {
    border-bottom:1px solid #03876d;
    }
Recent Random Colors