Random Color Generator

#95b5d3 Color

Color Codes
Hex Code #95b5d3
RGB Code rgb(149, 181, 211)
HSL Code hsl(209, 41%, 71%)

#95b5d3 Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 181, 211);
   }

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(209, 41%, 71%);
  }

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 #95b5d3

RGB Code Hex Code Preview
rgb(149, 181, 211, 10%) #95b5d31a  
rgb(149, 181, 211, 20%) #95b5d333  
rgb(149, 181, 211, 40%) #95b5d34C  
rgb(149, 181, 211, 60%) #95b5d399  
rgb(149, 181, 211, 80%) #95b5d3CC  
rgb(149, 181, 211, 100%) #95b5d3FF  

Saturated and desaturated colors of #95b5d3

HSL Code Preview
hsl(209, 10%, 71%)  
hsl(209, 20%, 71%)  
hsl(209, 40%, 71%)  
hsl(209, 60%, 71%)  
hsl(209, 80%, 71%)  
hsl(209, 100%, 71%)  

#95b5d3 Color Usage In CSS

 body {
    color: #95b5d3;
    }
 p {
    color: rgb(149, 181, 211);
    }
 header {
    border-bottom:1px solid #95b5d3;
    }
Recent Random Colors