Random Color Generator

#076bc3 Color

Color Codes
Hex Code #076bc3
RGB Code rgb(07, 107, 195)
HSL Code hsl(208, 93%, 40%)

#076bc3 Color Syntax

rgb()

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

 main {
    background-color: rgb(07, 107, 195);
   }

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(208, 93%, 40%);
  }

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 #076bc3

RGB Code Hex Code Preview
rgb(07, 107, 195, 10%) #076bc31a  
rgb(07, 107, 195, 20%) #076bc333  
rgb(07, 107, 195, 40%) #076bc34C  
rgb(07, 107, 195, 60%) #076bc399  
rgb(07, 107, 195, 80%) #076bc3CC  
rgb(07, 107, 195, 100%) #076bc3FF  

Saturated and desaturated colors of #076bc3

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

#076bc3 Color Usage In CSS

 body {
    color: #076bc3;
    }
 p {
    color: rgb(07, 107, 195);
    }
 header {
    border-bottom:1px solid #076bc3;
    }
Recent Random Colors