Random Color Generator

#1cdcda Color

Color Codes
Hex Code #1cdcda
RGB Code rgb(28, 220, 218)
HSL Code hsl(179, 77%, 49%)

#1cdcda Color Syntax

rgb()

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

 main {
    background-color: rgb(28, 220, 218);
   }

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(179, 77%, 49%);
  }

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 #1cdcda

RGB Code Hex Code Preview
rgb(28, 220, 218, 10%) #1cdcda1a  
rgb(28, 220, 218, 20%) #1cdcda33  
rgb(28, 220, 218, 40%) #1cdcda4C  
rgb(28, 220, 218, 60%) #1cdcda99  
rgb(28, 220, 218, 80%) #1cdcdaCC  
rgb(28, 220, 218, 100%) #1cdcdaFF  

Saturated and desaturated colors of #1cdcda

HSL Code Preview
hsl(179, 10%, 49%)  
hsl(179, 20%, 49%)  
hsl(179, 40%, 49%)  
hsl(179, 60%, 49%)  
hsl(179, 80%, 49%)  
hsl(179, 100%, 49%)  

#1cdcda Color Usage In CSS

 body {
    color: #1cdcda;
    }
 p {
    color: rgb(28, 220, 218);
    }
 header {
    border-bottom:1px solid #1cdcda;
    }
Recent Random Colors