Random Color Generator

#2699ca Color

Color Codes
Hex Code #2699ca
RGB Code rgb(38, 153, 202)
HSL Code hsl(198, 68%, 47%)

#2699ca Color Syntax

rgb()

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

 main {
    background-color: rgb(38, 153, 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(198, 68%, 47%);
  }

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 #2699ca

RGB Code Hex Code Preview
rgb(38, 153, 202, 10%) #2699ca1a  
rgb(38, 153, 202, 20%) #2699ca33  
rgb(38, 153, 202, 40%) #2699ca4C  
rgb(38, 153, 202, 60%) #2699ca99  
rgb(38, 153, 202, 80%) #2699caCC  
rgb(38, 153, 202, 100%) #2699caFF  

Saturated and desaturated colors of #2699ca

HSL Code Preview
hsl(198, 10%, 47%)  
hsl(198, 20%, 47%)  
hsl(198, 40%, 47%)  
hsl(198, 60%, 47%)  
hsl(198, 80%, 47%)  
hsl(198, 100%, 47%)  

#2699ca Color Usage In CSS

 body {
    color: #2699ca;
    }
 p {
    color: rgb(38, 153, 202);
    }
 header {
    border-bottom:1px solid #2699ca;
    }
Recent Random Colors