Random Color Generator

#3084cb Color

Color Codes
Hex Code #3084cb
RGB Code rgb(48, 132, 203)
HSL Code hsl(207, 62%, 49%)

#3084cb Color Syntax

rgb()

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

 main {
    background-color: rgb(48, 132, 203);
   }

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(207, 62%, 49%);
  }

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 #3084cb

RGB Code Hex Code Preview
rgb(48, 132, 203, 10%) #3084cb1a  
rgb(48, 132, 203, 20%) #3084cb33  
rgb(48, 132, 203, 40%) #3084cb4C  
rgb(48, 132, 203, 60%) #3084cb99  
rgb(48, 132, 203, 80%) #3084cbCC  
rgb(48, 132, 203, 100%) #3084cbFF  

Saturated and desaturated colors of #3084cb

HSL Code Preview
hsl(207, 10%, 49%)  
hsl(207, 20%, 49%)  
hsl(207, 40%, 49%)  
hsl(207, 60%, 49%)  
hsl(207, 80%, 49%)  
hsl(207, 100%, 49%)  

#3084cb Color Usage In CSS

 body {
    color: #3084cb;
    }
 p {
    color: rgb(48, 132, 203);
    }
 header {
    border-bottom:1px solid #3084cb;
    }
Recent Random Colors