Random Color Generator

#0d08e4 Color

Color Codes
Hex Code #0d08e4
RGB Code rgb(13, 08, 228)
HSL Code hsl(241, 93%, 46%)

#0d08e4 Color Syntax

rgb()

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

 main {
    background-color: rgb(13, 08, 228);
   }

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(241, 93%, 46%);
  }

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 #0d08e4

RGB Code Hex Code Preview
rgb(13, 08, 228, 10%) #0d08e41a  
rgb(13, 08, 228, 20%) #0d08e433  
rgb(13, 08, 228, 40%) #0d08e44C  
rgb(13, 08, 228, 60%) #0d08e499  
rgb(13, 08, 228, 80%) #0d08e4CC  
rgb(13, 08, 228, 100%) #0d08e4FF  

Saturated and desaturated colors of #0d08e4

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

#0d08e4 Color Usage In CSS

 body {
    color: #0d08e4;
    }
 p {
    color: rgb(13, 08, 228);
    }
 header {
    border-bottom:1px solid #0d08e4;
    }
Recent Random Colors