Random Color Generator

#3ba8c4 Color

Color Codes
Hex Code #3ba8c4
RGB Code rgb(59, 168, 196)
HSL Code hsl(192, 54%, 50%)

#3ba8c4 Color Syntax

rgb()

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

 main {
    background-color: rgb(59, 168, 196);
   }

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(192, 54%, 50%);
  }

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 #3ba8c4

RGB Code Hex Code Preview
rgb(59, 168, 196, 10%) #3ba8c41a  
rgb(59, 168, 196, 20%) #3ba8c433  
rgb(59, 168, 196, 40%) #3ba8c44C  
rgb(59, 168, 196, 60%) #3ba8c499  
rgb(59, 168, 196, 80%) #3ba8c4CC  
rgb(59, 168, 196, 100%) #3ba8c4FF  

Saturated and desaturated colors of #3ba8c4

HSL Code Preview
hsl(192, 10%, 50%)  
hsl(192, 20%, 50%)  
hsl(192, 40%, 50%)  
hsl(192, 60%, 50%)  
hsl(192, 80%, 50%)  
hsl(192, 100%, 50%)  

#3ba8c4 Color Usage In CSS

 body {
    color: #3ba8c4;
    }
 p {
    color: rgb(59, 168, 196);
    }
 header {
    border-bottom:1px solid #3ba8c4;
    }
Recent Random Colors