Random Color Generator

#48cbe3 Color

Color Codes
Hex Code #48cbe3
RGB Code rgb(72, 203, 227)
HSL Code hsl(189, 73%, 59%)

#48cbe3 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 203, 227);
   }

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(189, 73%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(72, 203, 227, 10%) #48cbe31a  
rgb(72, 203, 227, 20%) #48cbe333  
rgb(72, 203, 227, 40%) #48cbe34C  
rgb(72, 203, 227, 60%) #48cbe399  
rgb(72, 203, 227, 80%) #48cbe3CC  
rgb(72, 203, 227, 100%) #48cbe3FF  

Saturated and desaturated colors of #48cbe3

HSL Code Preview
hsl(189, 10%, 59%)  
hsl(189, 20%, 59%)  
hsl(189, 40%, 59%)  
hsl(189, 60%, 59%)  
hsl(189, 80%, 59%)  
hsl(189, 100%, 59%)  

#48cbe3 Color Usage In CSS

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