Random Color Generator

#5689bd Color

Color Codes
Hex Code #5689bd
RGB Code rgb(86, 137, 189)
HSL Code hsl(210, 44%, 54%)

#5689bd Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 137, 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(210, 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 #5689bd

RGB Code Hex Code Preview
rgb(86, 137, 189, 10%) #5689bd1a  
rgb(86, 137, 189, 20%) #5689bd33  
rgb(86, 137, 189, 40%) #5689bd4C  
rgb(86, 137, 189, 60%) #5689bd99  
rgb(86, 137, 189, 80%) #5689bdCC  
rgb(86, 137, 189, 100%) #5689bdFF  

Saturated and desaturated colors of #5689bd

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

#5689bd Color Usage In CSS

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