Random Color Generator

#1abdc2 Color

Color Codes
Hex Code #1abdc2
RGB Code rgb(26, 189, 194)
HSL Code hsl(182, 76%, 43%)

#1abdc2 Color Syntax

rgb()

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

 main {
    background-color: rgb(26, 189, 194);
   }

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(182, 76%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(26, 189, 194, 10%) #1abdc21a  
rgb(26, 189, 194, 20%) #1abdc233  
rgb(26, 189, 194, 40%) #1abdc24C  
rgb(26, 189, 194, 60%) #1abdc299  
rgb(26, 189, 194, 80%) #1abdc2CC  
rgb(26, 189, 194, 100%) #1abdc2FF  

Saturated and desaturated colors of #1abdc2

HSL Code Preview
hsl(182, 10%, 43%)  
hsl(182, 20%, 43%)  
hsl(182, 40%, 43%)  
hsl(182, 60%, 43%)  
hsl(182, 80%, 43%)  
hsl(182, 100%, 43%)  

#1abdc2 Color Usage In CSS

 body {
    color: #1abdc2;
    }
 p {
    color: rgb(26, 189, 194);
    }
 header {
    border-bottom:1px solid #1abdc2;
    }
Recent Random Colors