Random Color Generator

#0296d6 Color

Color Codes
Hex Code #0296d6
RGB Code rgb(02, 150, 214)
HSL Code hsl(198, 98%, 42%)

#0296d6 Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 150, 214);
   }

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%, 42%);
  }

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 #0296d6

RGB Code Hex Code Preview
rgb(02, 150, 214, 10%) #0296d61a  
rgb(02, 150, 214, 20%) #0296d633  
rgb(02, 150, 214, 40%) #0296d64C  
rgb(02, 150, 214, 60%) #0296d699  
rgb(02, 150, 214, 80%) #0296d6CC  
rgb(02, 150, 214, 100%) #0296d6FF  

Saturated and desaturated colors of #0296d6

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

#0296d6 Color Usage In CSS

 body {
    color: #0296d6;
    }
 p {
    color: rgb(02, 150, 214);
    }
 header {
    border-bottom:1px solid #0296d6;
    }
Recent Random Colors