Random Color Generator

#0e0dff Color

Color Codes
Hex Code #0e0dff
RGB Code rgb(14, 13, 255)
HSL Code hsl(240, 100%, 53%)

#0e0dff Color Syntax

rgb()

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

 main {
    background-color: rgb(14, 13, 255);
   }

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(240, 100%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(14, 13, 255, 10%) #0e0dff1a  
rgb(14, 13, 255, 20%) #0e0dff33  
rgb(14, 13, 255, 40%) #0e0dff4C  
rgb(14, 13, 255, 60%) #0e0dff99  
rgb(14, 13, 255, 80%) #0e0dffCC  
rgb(14, 13, 255, 100%) #0e0dffFF  

Saturated and desaturated colors of #0e0dff

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

#0e0dff Color Usage In CSS

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