Random Color Generator

#508bfc Color

Color Codes
Hex Code #508bfc
RGB Code rgb(80, 139, 252)
HSL Code hsl(219, 97%, 65%)

#508bfc Color Syntax

rgb()

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

 main {
    background-color: rgb(80, 139, 252);
   }

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(219, 97%, 65%);
  }

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 #508bfc

RGB Code Hex Code Preview
rgb(80, 139, 252, 10%) #508bfc1a  
rgb(80, 139, 252, 20%) #508bfc33  
rgb(80, 139, 252, 40%) #508bfc4C  
rgb(80, 139, 252, 60%) #508bfc99  
rgb(80, 139, 252, 80%) #508bfcCC  
rgb(80, 139, 252, 100%) #508bfcFF  

Saturated and desaturated colors of #508bfc

HSL Code Preview
hsl(219, 10%, 65%)  
hsl(219, 20%, 65%)  
hsl(219, 40%, 65%)  
hsl(219, 60%, 65%)  
hsl(219, 80%, 65%)  
hsl(219, 100%, 65%)  

#508bfc Color Usage In CSS

 body {
    color: #508bfc;
    }
 p {
    color: rgb(80, 139, 252);
    }
 header {
    border-bottom:1px solid #508bfc;
    }
Recent Random Colors