Random Color Generator

#18b3de Color

Color Codes
Hex Code #18b3de
RGB Code rgb(24, 179, 222)
HSL Code hsl(193, 80%, 48%)

#18b3de Color Syntax

rgb()

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

 main {
    background-color: rgb(24, 179, 222);
   }

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(193, 80%, 48%);
  }

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 #18b3de

RGB Code Hex Code Preview
rgb(24, 179, 222, 10%) #18b3de1a  
rgb(24, 179, 222, 20%) #18b3de33  
rgb(24, 179, 222, 40%) #18b3de4C  
rgb(24, 179, 222, 60%) #18b3de99  
rgb(24, 179, 222, 80%) #18b3deCC  
rgb(24, 179, 222, 100%) #18b3deFF  

Saturated and desaturated colors of #18b3de

HSL Code Preview
hsl(193, 10%, 48%)  
hsl(193, 20%, 48%)  
hsl(193, 40%, 48%)  
hsl(193, 60%, 48%)  
hsl(193, 80%, 48%)  
hsl(193, 100%, 48%)  

#18b3de Color Usage In CSS

 body {
    color: #18b3de;
    }
 p {
    color: rgb(24, 179, 222);
    }
 header {
    border-bottom:1px solid #18b3de;
    }
Recent Random Colors