Random Color Generator

#30ccf5 Color

Color Codes
Hex Code #30ccf5
RGB Code rgb(48, 204, 245)
HSL Code hsl(192, 91%, 57%)

#30ccf5 Color Syntax

rgb()

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

 main {
    background-color: rgb(48, 204, 245);
   }

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(192, 91%, 57%);
  }

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 #30ccf5

RGB Code Hex Code Preview
rgb(48, 204, 245, 10%) #30ccf51a  
rgb(48, 204, 245, 20%) #30ccf533  
rgb(48, 204, 245, 40%) #30ccf54C  
rgb(48, 204, 245, 60%) #30ccf599  
rgb(48, 204, 245, 80%) #30ccf5CC  
rgb(48, 204, 245, 100%) #30ccf5FF  

Saturated and desaturated colors of #30ccf5

HSL Code Preview
hsl(192, 10%, 57%)  
hsl(192, 20%, 57%)  
hsl(192, 40%, 57%)  
hsl(192, 60%, 57%)  
hsl(192, 80%, 57%)  
hsl(192, 100%, 57%)  

#30ccf5 Color Usage In CSS

 body {
    color: #30ccf5;
    }
 p {
    color: rgb(48, 204, 245);
    }
 header {
    border-bottom:1px solid #30ccf5;
    }
Recent Random Colors