Random Color Generator

#81a0d7 Color

Color Codes
Hex Code #81a0d7
RGB Code rgb(129, 160, 215)
HSL Code hsl(218, 52%, 67%)

#81a0d7 Color Syntax

rgb()

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

 main {
    background-color: rgb(129, 160, 215);
   }

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(218, 52%, 67%);
  }

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 #81a0d7

RGB Code Hex Code Preview
rgb(129, 160, 215, 10%) #81a0d71a  
rgb(129, 160, 215, 20%) #81a0d733  
rgb(129, 160, 215, 40%) #81a0d74C  
rgb(129, 160, 215, 60%) #81a0d799  
rgb(129, 160, 215, 80%) #81a0d7CC  
rgb(129, 160, 215, 100%) #81a0d7FF  

Saturated and desaturated colors of #81a0d7

HSL Code Preview
hsl(218, 10%, 67%)  
hsl(218, 20%, 67%)  
hsl(218, 40%, 67%)  
hsl(218, 60%, 67%)  
hsl(218, 80%, 67%)  
hsl(218, 100%, 67%)  

#81a0d7 Color Usage In CSS

 body {
    color: #81a0d7;
    }
 p {
    color: rgb(129, 160, 215);
    }
 header {
    border-bottom:1px solid #81a0d7;
    }
Recent Random Colors