Random Color Generator

#0ab480 Color

Color Codes
Hex Code #0ab480
RGB Code rgb(10, 180, 128)
HSL Code hsl(162, 89%, 37%)

#0ab480 Color Syntax

rgb()

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

 main {
    background-color: rgb(10, 180, 128);
   }

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(162, 89%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(10, 180, 128, 10%) #0ab4801a  
rgb(10, 180, 128, 20%) #0ab48033  
rgb(10, 180, 128, 40%) #0ab4804C  
rgb(10, 180, 128, 60%) #0ab48099  
rgb(10, 180, 128, 80%) #0ab480CC  
rgb(10, 180, 128, 100%) #0ab480FF  

Saturated and desaturated colors of #0ab480

HSL Code Preview
hsl(162, 10%, 37%)  
hsl(162, 20%, 37%)  
hsl(162, 40%, 37%)  
hsl(162, 60%, 37%)  
hsl(162, 80%, 37%)  
hsl(162, 100%, 37%)  

#0ab480 Color Usage In CSS

 body {
    color: #0ab480;
    }
 p {
    color: rgb(10, 180, 128);
    }
 header {
    border-bottom:1px solid #0ab480;
    }
Recent Random Colors