Random Color Generator

#94c5bd Color

Color Codes
Hex Code #94c5bd
RGB Code rgb(148, 197, 189)
HSL Code hsl(170, 30%, 68%)

#94c5bd Color Syntax

rgb()

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

 main {
    background-color: rgb(148, 197, 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(170, 30%, 68%);
  }

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 #94c5bd

RGB Code Hex Code Preview
rgb(148, 197, 189, 10%) #94c5bd1a  
rgb(148, 197, 189, 20%) #94c5bd33  
rgb(148, 197, 189, 40%) #94c5bd4C  
rgb(148, 197, 189, 60%) #94c5bd99  
rgb(148, 197, 189, 80%) #94c5bdCC  
rgb(148, 197, 189, 100%) #94c5bdFF  

Saturated and desaturated colors of #94c5bd

HSL Code Preview
hsl(170, 10%, 68%)  
hsl(170, 20%, 68%)  
hsl(170, 40%, 68%)  
hsl(170, 60%, 68%)  
hsl(170, 80%, 68%)  
hsl(170, 100%, 68%)  

#94c5bd Color Usage In CSS

 body {
    color: #94c5bd;
    }
 p {
    color: rgb(148, 197, 189);
    }
 header {
    border-bottom:1px solid #94c5bd;
    }
Recent Random Colors