Random Color Generator

#6b8a96 Color

Color Codes
Hex Code #6b8a96
RGB Code rgb(107, 138, 150)
HSL Code hsl(197, 17%, 50%)

#6b8a96 Color Syntax

rgb()

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

 main {
    background-color: rgb(107, 138, 150);
   }

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(197, 17%, 50%);
  }

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 #6b8a96

RGB Code Hex Code Preview
rgb(107, 138, 150, 10%) #6b8a961a  
rgb(107, 138, 150, 20%) #6b8a9633  
rgb(107, 138, 150, 40%) #6b8a964C  
rgb(107, 138, 150, 60%) #6b8a9699  
rgb(107, 138, 150, 80%) #6b8a96CC  
rgb(107, 138, 150, 100%) #6b8a96FF  

Saturated and desaturated colors of #6b8a96

HSL Code Preview
hsl(197, 10%, 50%)  
hsl(197, 20%, 50%)  
hsl(197, 40%, 50%)  
hsl(197, 60%, 50%)  
hsl(197, 80%, 50%)  
hsl(197, 100%, 50%)  

#6b8a96 Color Usage In CSS

 body {
    color: #6b8a96;
    }
 p {
    color: rgb(107, 138, 150);
    }
 header {
    border-bottom:1px solid #6b8a96;
    }
Recent Random Colors