Random Color Generator

#95d5eb Color

Color Codes
Hex Code #95d5eb
RGB Code rgb(149, 213, 235)
HSL Code hsl(195, 68%, 75%)

#95d5eb Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 213, 235);
   }

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(195, 68%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(149, 213, 235, 10%) #95d5eb1a  
rgb(149, 213, 235, 20%) #95d5eb33  
rgb(149, 213, 235, 40%) #95d5eb4C  
rgb(149, 213, 235, 60%) #95d5eb99  
rgb(149, 213, 235, 80%) #95d5ebCC  
rgb(149, 213, 235, 100%) #95d5ebFF  

Saturated and desaturated colors of #95d5eb

HSL Code Preview
hsl(195, 10%, 75%)  
hsl(195, 20%, 75%)  
hsl(195, 40%, 75%)  
hsl(195, 60%, 75%)  
hsl(195, 80%, 75%)  
hsl(195, 100%, 75%)  

#95d5eb Color Usage In CSS

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