Random Color Generator

#7b9493 Color

Color Codes
Hex Code #7b9493
RGB Code rgb(123, 148, 147)
HSL Code hsl(178, 10%, 53%)

#7b9493 Color Syntax

rgb()

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

 main {
    background-color: rgb(123, 148, 147);
   }

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(178, 10%, 53%);
  }

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 #7b9493

RGB Code Hex Code Preview
rgb(123, 148, 147, 10%) #7b94931a  
rgb(123, 148, 147, 20%) #7b949333  
rgb(123, 148, 147, 40%) #7b94934C  
rgb(123, 148, 147, 60%) #7b949399  
rgb(123, 148, 147, 80%) #7b9493CC  
rgb(123, 148, 147, 100%) #7b9493FF  

Saturated and desaturated colors of #7b9493

HSL Code Preview
hsl(178, 10%, 53%)  
hsl(178, 20%, 53%)  
hsl(178, 40%, 53%)  
hsl(178, 60%, 53%)  
hsl(178, 80%, 53%)  
hsl(178, 100%, 53%)  

#7b9493 Color Usage In CSS

 body {
    color: #7b9493;
    }
 p {
    color: rgb(123, 148, 147);
    }
 header {
    border-bottom:1px solid #7b9493;
    }
Recent Random Colors