Random Color Generator

#027baf Color

Color Codes
Hex Code #027baf
RGB Code rgb(02, 123, 175)
HSL Code hsl(198, 98%, 35%)

#027baf Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 123, 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(198, 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 #027baf

RGB Code Hex Code Preview
rgb(02, 123, 175, 10%) #027baf1a  
rgb(02, 123, 175, 20%) #027baf33  
rgb(02, 123, 175, 40%) #027baf4C  
rgb(02, 123, 175, 60%) #027baf99  
rgb(02, 123, 175, 80%) #027bafCC  
rgb(02, 123, 175, 100%) #027bafFF  

Saturated and desaturated colors of #027baf

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

#027baf Color Usage In CSS

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