Random Color Generator

#1c65d3 Color

Color Codes
Hex Code #1c65d3
RGB Code rgb(28, 101, 211)
HSL Code hsl(216, 77%, 47%)

#1c65d3 Color Syntax

rgb()

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

 main {
    background-color: rgb(28, 101, 211);
   }

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(216, 77%, 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 #1c65d3

RGB Code Hex Code Preview
rgb(28, 101, 211, 10%) #1c65d31a  
rgb(28, 101, 211, 20%) #1c65d333  
rgb(28, 101, 211, 40%) #1c65d34C  
rgb(28, 101, 211, 60%) #1c65d399  
rgb(28, 101, 211, 80%) #1c65d3CC  
rgb(28, 101, 211, 100%) #1c65d3FF  

Saturated and desaturated colors of #1c65d3

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

#1c65d3 Color Usage In CSS

 body {
    color: #1c65d3;
    }
 p {
    color: rgb(28, 101, 211);
    }
 header {
    border-bottom:1px solid #1c65d3;
    }
Recent Random Colors