Random Color Generator

#0843ba Color

Color Codes
Hex Code #0843ba
RGB Code rgb(08, 67, 186)
HSL Code hsl(220, 92%, 38%)

#0843ba Color Syntax

rgb()

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

 main {
    background-color: rgb(08, 67, 186);
   }

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(220, 92%, 38%);
  }

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 #0843ba

RGB Code Hex Code Preview
rgb(08, 67, 186, 10%) #0843ba1a  
rgb(08, 67, 186, 20%) #0843ba33  
rgb(08, 67, 186, 40%) #0843ba4C  
rgb(08, 67, 186, 60%) #0843ba99  
rgb(08, 67, 186, 80%) #0843baCC  
rgb(08, 67, 186, 100%) #0843baFF  

Saturated and desaturated colors of #0843ba

HSL Code Preview
hsl(220, 10%, 38%)  
hsl(220, 20%, 38%)  
hsl(220, 40%, 38%)  
hsl(220, 60%, 38%)  
hsl(220, 80%, 38%)  
hsl(220, 100%, 38%)  

#0843ba Color Usage In CSS

 body {
    color: #0843ba;
    }
 p {
    color: rgb(08, 67, 186);
    }
 header {
    border-bottom:1px solid #0843ba;
    }
Recent Random Colors