Random Color Generator

#0576ec Color

Color Codes
Hex Code #0576ec
RGB Code rgb(05, 118, 236)
HSL Code hsl(211, 96%, 47%)

#0576ec Color Syntax

rgb()

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

 main {
    background-color: rgb(05, 118, 236);
   }

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(211, 96%, 47%);
  }

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 #0576ec

RGB Code Hex Code Preview
rgb(05, 118, 236, 10%) #0576ec1a  
rgb(05, 118, 236, 20%) #0576ec33  
rgb(05, 118, 236, 40%) #0576ec4C  
rgb(05, 118, 236, 60%) #0576ec99  
rgb(05, 118, 236, 80%) #0576ecCC  
rgb(05, 118, 236, 100%) #0576ecFF  

Saturated and desaturated colors of #0576ec

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

#0576ec Color Usage In CSS

 body {
    color: #0576ec;
    }
 p {
    color: rgb(05, 118, 236);
    }
 header {
    border-bottom:1px solid #0576ec;
    }
Recent Random Colors