Random Color Generator

#21bdca Color

Color Codes
Hex Code #21bdca
RGB Code rgb(33, 189, 202)
HSL Code hsl(185, 72%, 46%)

#21bdca Color Syntax

rgb()

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

 main {
    background-color: rgb(33, 189, 202);
   }

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(185, 72%, 46%);
  }

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 #21bdca

RGB Code Hex Code Preview
rgb(33, 189, 202, 10%) #21bdca1a  
rgb(33, 189, 202, 20%) #21bdca33  
rgb(33, 189, 202, 40%) #21bdca4C  
rgb(33, 189, 202, 60%) #21bdca99  
rgb(33, 189, 202, 80%) #21bdcaCC  
rgb(33, 189, 202, 100%) #21bdcaFF  

Saturated and desaturated colors of #21bdca

HSL Code Preview
hsl(185, 10%, 46%)  
hsl(185, 20%, 46%)  
hsl(185, 40%, 46%)  
hsl(185, 60%, 46%)  
hsl(185, 80%, 46%)  
hsl(185, 100%, 46%)  

#21bdca Color Usage In CSS

 body {
    color: #21bdca;
    }
 p {
    color: rgb(33, 189, 202);
    }
 header {
    border-bottom:1px solid #21bdca;
    }
Recent Random Colors