Random Color Generator

#0f84ca Color

Color Codes
Hex Code #0f84ca
RGB Code rgb(15, 132, 202)
HSL Code hsl(202, 86%, 43%)

#0f84ca Color Syntax

rgb()

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

 main {
    background-color: rgb(15, 132, 202);
   }

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(202, 86%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(15, 132, 202, 10%) #0f84ca1a  
rgb(15, 132, 202, 20%) #0f84ca33  
rgb(15, 132, 202, 40%) #0f84ca4C  
rgb(15, 132, 202, 60%) #0f84ca99  
rgb(15, 132, 202, 80%) #0f84caCC  
rgb(15, 132, 202, 100%) #0f84caFF  

Saturated and desaturated colors of #0f84ca

HSL Code Preview
hsl(202, 10%, 43%)  
hsl(202, 20%, 43%)  
hsl(202, 40%, 43%)  
hsl(202, 60%, 43%)  
hsl(202, 80%, 43%)  
hsl(202, 100%, 43%)  

#0f84ca Color Usage In CSS

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