Random Color Generator

#60b0ed Color

Color Codes
Hex Code #60b0ed
RGB Code rgb(96, 176, 237)
HSL Code hsl(206, 80%, 65%)

#60b0ed Color Syntax

rgb()

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

 main {
    background-color: rgb(96, 176, 237);
   }

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(206, 80%, 65%);
  }

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 #60b0ed

RGB Code Hex Code Preview
rgb(96, 176, 237, 10%) #60b0ed1a  
rgb(96, 176, 237, 20%) #60b0ed33  
rgb(96, 176, 237, 40%) #60b0ed4C  
rgb(96, 176, 237, 60%) #60b0ed99  
rgb(96, 176, 237, 80%) #60b0edCC  
rgb(96, 176, 237, 100%) #60b0edFF  

Saturated and desaturated colors of #60b0ed

HSL Code Preview
hsl(206, 10%, 65%)  
hsl(206, 20%, 65%)  
hsl(206, 40%, 65%)  
hsl(206, 60%, 65%)  
hsl(206, 80%, 65%)  
hsl(206, 100%, 65%)  

#60b0ed Color Usage In CSS

 body {
    color: #60b0ed;
    }
 p {
    color: rgb(96, 176, 237);
    }
 header {
    border-bottom:1px solid #60b0ed;
    }
Recent Random Colors