Random Color Generator

#48aed6 Color

Color Codes
Hex Code #48aed6
RGB Code rgb(72, 174, 214)
HSL Code hsl(197, 63%, 56%)

#48aed6 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 174, 214);
   }

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(197, 63%, 56%);
  }

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 #48aed6

RGB Code Hex Code Preview
rgb(72, 174, 214, 10%) #48aed61a  
rgb(72, 174, 214, 20%) #48aed633  
rgb(72, 174, 214, 40%) #48aed64C  
rgb(72, 174, 214, 60%) #48aed699  
rgb(72, 174, 214, 80%) #48aed6CC  
rgb(72, 174, 214, 100%) #48aed6FF  

Saturated and desaturated colors of #48aed6

HSL Code Preview
hsl(197, 10%, 56%)  
hsl(197, 20%, 56%)  
hsl(197, 40%, 56%)  
hsl(197, 60%, 56%)  
hsl(197, 80%, 56%)  
hsl(197, 100%, 56%)  

#48aed6 Color Usage In CSS

 body {
    color: #48aed6;
    }
 p {
    color: rgb(72, 174, 214);
    }
 header {
    border-bottom:1px solid #48aed6;
    }
Recent Random Colors