Random Color Generator

#43b8dc Color

Color Codes
Hex Code #43b8dc
RGB Code rgb(67, 184, 220)
HSL Code hsl(194, 69%, 56%)

#43b8dc Color Syntax

rgb()

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

 main {
    background-color: rgb(67, 184, 220);
   }

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(194, 69%, 56%);
  }

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 #43b8dc

RGB Code Hex Code Preview
rgb(67, 184, 220, 10%) #43b8dc1a  
rgb(67, 184, 220, 20%) #43b8dc33  
rgb(67, 184, 220, 40%) #43b8dc4C  
rgb(67, 184, 220, 60%) #43b8dc99  
rgb(67, 184, 220, 80%) #43b8dcCC  
rgb(67, 184, 220, 100%) #43b8dcFF  

Saturated and desaturated colors of #43b8dc

HSL Code Preview
hsl(194, 10%, 56%)  
hsl(194, 20%, 56%)  
hsl(194, 40%, 56%)  
hsl(194, 60%, 56%)  
hsl(194, 80%, 56%)  
hsl(194, 100%, 56%)  

#43b8dc Color Usage In CSS

 body {
    color: #43b8dc;
    }
 p {
    color: rgb(67, 184, 220);
    }
 header {
    border-bottom:1px solid #43b8dc;
    }
Recent Random Colors