Random Color Generator

#0f1cde Color

Color Codes
Hex Code #0f1cde
RGB Code rgb(15, 28, 222)
HSL Code hsl(236, 87%, 46%)

#0f1cde Color Syntax

rgb()

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

 main {
    background-color: rgb(15, 28, 222);
   }

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(236, 87%, 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 #0f1cde

RGB Code Hex Code Preview
rgb(15, 28, 222, 10%) #0f1cde1a  
rgb(15, 28, 222, 20%) #0f1cde33  
rgb(15, 28, 222, 40%) #0f1cde4C  
rgb(15, 28, 222, 60%) #0f1cde99  
rgb(15, 28, 222, 80%) #0f1cdeCC  
rgb(15, 28, 222, 100%) #0f1cdeFF  

Saturated and desaturated colors of #0f1cde

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

#0f1cde Color Usage In CSS

 body {
    color: #0f1cde;
    }
 p {
    color: rgb(15, 28, 222);
    }
 header {
    border-bottom:1px solid #0f1cde;
    }
Recent Random Colors