Random Color Generator

#02777c Color

Color Codes
Hex Code #02777c
RGB Code rgb(02, 119, 124)
HSL Code hsl(182, 97%, 25%)

#02777c Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 119, 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(182, 97%, 25%);
  }

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

RGB Code Hex Code Preview
rgb(02, 119, 124, 10%) #02777c1a  
rgb(02, 119, 124, 20%) #02777c33  
rgb(02, 119, 124, 40%) #02777c4C  
rgb(02, 119, 124, 60%) #02777c99  
rgb(02, 119, 124, 80%) #02777cCC  
rgb(02, 119, 124, 100%) #02777cFF  

Saturated and desaturated colors of #02777c

HSL Code Preview
hsl(182, 10%, 25%)  
hsl(182, 20%, 25%)  
hsl(182, 40%, 25%)  
hsl(182, 60%, 25%)  
hsl(182, 80%, 25%)  
hsl(182, 100%, 25%)  

#02777c Color Usage In CSS

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