Random Color Generator

#028caf Color

Color Codes
Hex Code #028caf
RGB Code rgb(02, 140, 175)
HSL Code hsl(192, 98%, 35%)

#028caf Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 140, 175);
   }

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(192, 98%, 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 #028caf

RGB Code Hex Code Preview
rgb(02, 140, 175, 10%) #028caf1a  
rgb(02, 140, 175, 20%) #028caf33  
rgb(02, 140, 175, 40%) #028caf4C  
rgb(02, 140, 175, 60%) #028caf99  
rgb(02, 140, 175, 80%) #028cafCC  
rgb(02, 140, 175, 100%) #028cafFF  

Saturated and desaturated colors of #028caf

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

#028caf Color Usage In CSS

 body {
    color: #028caf;
    }
 p {
    color: rgb(02, 140, 175);
    }
 header {
    border-bottom:1px solid #028caf;
    }
Recent Random Colors