Random Color Generator

#068ca1 Color

Color Codes
Hex Code #068ca1
RGB Code rgb(06, 140, 161)
HSL Code hsl(188, 93%, 33%)

#068ca1 Color Syntax

rgb()

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

 main {
    background-color: rgb(06, 140, 161);
   }

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(188, 93%, 33%);
  }

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 #068ca1

RGB Code Hex Code Preview
rgb(06, 140, 161, 10%) #068ca11a  
rgb(06, 140, 161, 20%) #068ca133  
rgb(06, 140, 161, 40%) #068ca14C  
rgb(06, 140, 161, 60%) #068ca199  
rgb(06, 140, 161, 80%) #068ca1CC  
rgb(06, 140, 161, 100%) #068ca1FF  

Saturated and desaturated colors of #068ca1

HSL Code Preview
hsl(188, 10%, 33%)  
hsl(188, 20%, 33%)  
hsl(188, 40%, 33%)  
hsl(188, 60%, 33%)  
hsl(188, 80%, 33%)  
hsl(188, 100%, 33%)  

#068ca1 Color Usage In CSS

 body {
    color: #068ca1;
    }
 p {
    color: rgb(06, 140, 161);
    }
 header {
    border-bottom:1px solid #068ca1;
    }
Recent Random Colors