Random Color Generator

#83b3ef Color

Color Codes
Hex Code #83b3ef
RGB Code rgb(131, 179, 239)
HSL Code hsl(213, 77%, 73%)

#83b3ef Color Syntax

rgb()

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

 main {
    background-color: rgb(131, 179, 239);
   }

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(213, 77%, 73%);
  }

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 #83b3ef

RGB Code Hex Code Preview
rgb(131, 179, 239, 10%) #83b3ef1a  
rgb(131, 179, 239, 20%) #83b3ef33  
rgb(131, 179, 239, 40%) #83b3ef4C  
rgb(131, 179, 239, 60%) #83b3ef99  
rgb(131, 179, 239, 80%) #83b3efCC  
rgb(131, 179, 239, 100%) #83b3efFF  

Saturated and desaturated colors of #83b3ef

HSL Code Preview
hsl(213, 10%, 73%)  
hsl(213, 20%, 73%)  
hsl(213, 40%, 73%)  
hsl(213, 60%, 73%)  
hsl(213, 80%, 73%)  
hsl(213, 100%, 73%)  

#83b3ef Color Usage In CSS

 body {
    color: #83b3ef;
    }
 p {
    color: rgb(131, 179, 239);
    }
 header {
    border-bottom:1px solid #83b3ef;
    }
Recent Random Colors