Random Color Generator

#687bbe Color

Color Codes
Hex Code #687bbe
RGB Code rgb(104, 123, 190)
HSL Code hsl(227, 40%, 58%)

#687bbe Color Syntax

rgb()

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

 main {
    background-color: rgb(104, 123, 190);
   }

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(227, 40%, 58%);
  }

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 #687bbe

RGB Code Hex Code Preview
rgb(104, 123, 190, 10%) #687bbe1a  
rgb(104, 123, 190, 20%) #687bbe33  
rgb(104, 123, 190, 40%) #687bbe4C  
rgb(104, 123, 190, 60%) #687bbe99  
rgb(104, 123, 190, 80%) #687bbeCC  
rgb(104, 123, 190, 100%) #687bbeFF  

Saturated and desaturated colors of #687bbe

HSL Code Preview
hsl(227, 10%, 58%)  
hsl(227, 20%, 58%)  
hsl(227, 40%, 58%)  
hsl(227, 60%, 58%)  
hsl(227, 80%, 58%)  
hsl(227, 100%, 58%)  

#687bbe Color Usage In CSS

 body {
    color: #687bbe;
    }
 p {
    color: rgb(104, 123, 190);
    }
 header {
    border-bottom:1px solid #687bbe;
    }
Recent Random Colors