Random Color Generator

#41b0ad Color

Color Codes
Hex Code #41b0ad
RGB Code rgb(65, 176, 173)
HSL Code hsl(178, 46%, 47%)

#41b0ad Color Syntax

rgb()

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

 main {
    background-color: rgb(65, 176, 173);
   }

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(178, 46%, 47%);
  }

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 #41b0ad

RGB Code Hex Code Preview
rgb(65, 176, 173, 10%) #41b0ad1a  
rgb(65, 176, 173, 20%) #41b0ad33  
rgb(65, 176, 173, 40%) #41b0ad4C  
rgb(65, 176, 173, 60%) #41b0ad99  
rgb(65, 176, 173, 80%) #41b0adCC  
rgb(65, 176, 173, 100%) #41b0adFF  

Saturated and desaturated colors of #41b0ad

HSL Code Preview
hsl(178, 10%, 47%)  
hsl(178, 20%, 47%)  
hsl(178, 40%, 47%)  
hsl(178, 60%, 47%)  
hsl(178, 80%, 47%)  
hsl(178, 100%, 47%)  

#41b0ad Color Usage In CSS

 body {
    color: #41b0ad;
    }
 p {
    color: rgb(65, 176, 173);
    }
 header {
    border-bottom:1px solid #41b0ad;
    }
Recent Random Colors