Random Color Generator

#067cac Color

Color Codes
Hex Code #067cac
RGB Code rgb(06, 124, 172)
HSL Code hsl(197, 93%, 35%)

#067cac Color Syntax

rgb()

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

 main {
    background-color: rgb(06, 124, 172);
   }

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(197, 93%, 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 #067cac

RGB Code Hex Code Preview
rgb(06, 124, 172, 10%) #067cac1a  
rgb(06, 124, 172, 20%) #067cac33  
rgb(06, 124, 172, 40%) #067cac4C  
rgb(06, 124, 172, 60%) #067cac99  
rgb(06, 124, 172, 80%) #067cacCC  
rgb(06, 124, 172, 100%) #067cacFF  

Saturated and desaturated colors of #067cac

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

#067cac Color Usage In CSS

 body {
    color: #067cac;
    }
 p {
    color: rgb(06, 124, 172);
    }
 header {
    border-bottom:1px solid #067cac;
    }
Recent Random Colors