Random Color Generator

#0c958c Color

Color Codes
Hex Code #0c958c
RGB Code rgb(12, 149, 140)
HSL Code hsl(176, 85%, 32%)

#0c958c Color Syntax

rgb()

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

 main {
    background-color: rgb(12, 149, 140);
   }

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(176, 85%, 32%);
  }

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

RGB Code Hex Code Preview
rgb(12, 149, 140, 10%) #0c958c1a  
rgb(12, 149, 140, 20%) #0c958c33  
rgb(12, 149, 140, 40%) #0c958c4C  
rgb(12, 149, 140, 60%) #0c958c99  
rgb(12, 149, 140, 80%) #0c958cCC  
rgb(12, 149, 140, 100%) #0c958cFF  

Saturated and desaturated colors of #0c958c

HSL Code Preview
hsl(176, 10%, 32%)  
hsl(176, 20%, 32%)  
hsl(176, 40%, 32%)  
hsl(176, 60%, 32%)  
hsl(176, 80%, 32%)  
hsl(176, 100%, 32%)  

#0c958c Color Usage In CSS

 body {
    color: #0c958c;
    }
 p {
    color: rgb(12, 149, 140);
    }
 header {
    border-bottom:1px solid #0c958c;
    }
Recent Random Colors