Random Color Generator

#0ca78a Color

Color Codes
Hex Code #0ca78a
RGB Code rgb(12, 167, 138)
HSL Code hsl(169, 87%, 35%)

#0ca78a Color Syntax

rgb()

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

 main {
    background-color: rgb(12, 167, 138);
   }

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(169, 87%, 35%);
  }

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

RGB Code Hex Code Preview
rgb(12, 167, 138, 10%) #0ca78a1a  
rgb(12, 167, 138, 20%) #0ca78a33  
rgb(12, 167, 138, 40%) #0ca78a4C  
rgb(12, 167, 138, 60%) #0ca78a99  
rgb(12, 167, 138, 80%) #0ca78aCC  
rgb(12, 167, 138, 100%) #0ca78aFF  

Saturated and desaturated colors of #0ca78a

HSL Code Preview
hsl(169, 10%, 35%)  
hsl(169, 20%, 35%)  
hsl(169, 40%, 35%)  
hsl(169, 60%, 35%)  
hsl(169, 80%, 35%)  
hsl(169, 100%, 35%)  

#0ca78a Color Usage In CSS

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