Random Color Generator

#12687c Color

Color Codes
Hex Code #12687c
RGB Code rgb(18, 104, 124)
HSL Code hsl(191, 75%, 28%)

#12687c Color Syntax

rgb()

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

 main {
    background-color: rgb(18, 104, 124);
   }

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(191, 75%, 28%);
  }

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 #12687c

RGB Code Hex Code Preview
rgb(18, 104, 124, 10%) #12687c1a  
rgb(18, 104, 124, 20%) #12687c33  
rgb(18, 104, 124, 40%) #12687c4C  
rgb(18, 104, 124, 60%) #12687c99  
rgb(18, 104, 124, 80%) #12687cCC  
rgb(18, 104, 124, 100%) #12687cFF  

Saturated and desaturated colors of #12687c

HSL Code Preview
hsl(191, 10%, 28%)  
hsl(191, 20%, 28%)  
hsl(191, 40%, 28%)  
hsl(191, 60%, 28%)  
hsl(191, 80%, 28%)  
hsl(191, 100%, 28%)  

#12687c Color Usage In CSS

 body {
    color: #12687c;
    }
 p {
    color: rgb(18, 104, 124);
    }
 header {
    border-bottom:1px solid #12687c;
    }
Recent Random Colors