Random Color Generator

#34a5b6 Color

Color Codes
Hex Code #34a5b6
RGB Code rgb(52, 165, 182)
HSL Code hsl(188, 56%, 46%)

#34a5b6 Color Syntax

rgb()

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

 main {
    background-color: rgb(52, 165, 182);
   }

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(188, 56%, 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 #34a5b6

RGB Code Hex Code Preview
rgb(52, 165, 182, 10%) #34a5b61a  
rgb(52, 165, 182, 20%) #34a5b633  
rgb(52, 165, 182, 40%) #34a5b64C  
rgb(52, 165, 182, 60%) #34a5b699  
rgb(52, 165, 182, 80%) #34a5b6CC  
rgb(52, 165, 182, 100%) #34a5b6FF  

Saturated and desaturated colors of #34a5b6

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

#34a5b6 Color Usage In CSS

 body {
    color: #34a5b6;
    }
 p {
    color: rgb(52, 165, 182);
    }
 header {
    border-bottom:1px solid #34a5b6;
    }
Recent Random Colors