Random Color Generator

#0f0a4b Color

Color Codes
Hex Code #0f0a4b
RGB Code rgb(15, 10, 75)
HSL Code hsl(245, 76%, 17%)

#0f0a4b Color Syntax

rgb()

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

 main {
    background-color: rgb(15, 10, 75);
   }

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(245, 76%, 17%);
  }

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

RGB Code Hex Code Preview
rgb(15, 10, 75, 10%) #0f0a4b1a  
rgb(15, 10, 75, 20%) #0f0a4b33  
rgb(15, 10, 75, 40%) #0f0a4b4C  
rgb(15, 10, 75, 60%) #0f0a4b99  
rgb(15, 10, 75, 80%) #0f0a4bCC  
rgb(15, 10, 75, 100%) #0f0a4bFF  

Saturated and desaturated colors of #0f0a4b

HSL Code Preview
hsl(245, 10%, 17%)  
hsl(245, 20%, 17%)  
hsl(245, 40%, 17%)  
hsl(245, 60%, 17%)  
hsl(245, 80%, 17%)  
hsl(245, 100%, 17%)  

#0f0a4b Color Usage In CSS

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