Random Color Generator

#5783bd Color

Color Codes
Hex Code #5783bd
RGB Code rgb(87, 131, 189)
HSL Code hsl(214, 44%, 54%)

#5783bd Color Syntax

rgb()

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

 main {
    background-color: rgb(87, 131, 189);
   }

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(214, 44%, 54%);
  }

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 #5783bd

RGB Code Hex Code Preview
rgb(87, 131, 189, 10%) #5783bd1a  
rgb(87, 131, 189, 20%) #5783bd33  
rgb(87, 131, 189, 40%) #5783bd4C  
rgb(87, 131, 189, 60%) #5783bd99  
rgb(87, 131, 189, 80%) #5783bdCC  
rgb(87, 131, 189, 100%) #5783bdFF  

Saturated and desaturated colors of #5783bd

HSL Code Preview
hsl(214, 10%, 54%)  
hsl(214, 20%, 54%)  
hsl(214, 40%, 54%)  
hsl(214, 60%, 54%)  
hsl(214, 80%, 54%)  
hsl(214, 100%, 54%)  

#5783bd Color Usage In CSS

 body {
    color: #5783bd;
    }
 p {
    color: rgb(87, 131, 189);
    }
 header {
    border-bottom:1px solid #5783bd;
    }
Recent Random Colors