Random Color Generator

#94a3cb Color

Color Codes
Hex Code #94a3cb
RGB Code rgb(148, 163, 203)
HSL Code hsl(224, 35%, 69%)

#94a3cb Color Syntax

rgb()

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

 main {
    background-color: rgb(148, 163, 203);
   }

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(224, 35%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(148, 163, 203, 10%) #94a3cb1a  
rgb(148, 163, 203, 20%) #94a3cb33  
rgb(148, 163, 203, 40%) #94a3cb4C  
rgb(148, 163, 203, 60%) #94a3cb99  
rgb(148, 163, 203, 80%) #94a3cbCC  
rgb(148, 163, 203, 100%) #94a3cbFF  

Saturated and desaturated colors of #94a3cb

HSL Code Preview
hsl(224, 10%, 69%)  
hsl(224, 20%, 69%)  
hsl(224, 40%, 69%)  
hsl(224, 60%, 69%)  
hsl(224, 80%, 69%)  
hsl(224, 100%, 69%)  

#94a3cb Color Usage In CSS

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