Random Color Generator

#467fa3 Color

Color Codes
Hex Code #467fa3
RGB Code rgb(70, 127, 163)
HSL Code hsl(203, 40%, 46%)

#467fa3 Color Syntax

rgb()

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

 main {
    background-color: rgb(70, 127, 163);
   }

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(203, 40%, 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 #467fa3

RGB Code Hex Code Preview
rgb(70, 127, 163, 10%) #467fa31a  
rgb(70, 127, 163, 20%) #467fa333  
rgb(70, 127, 163, 40%) #467fa34C  
rgb(70, 127, 163, 60%) #467fa399  
rgb(70, 127, 163, 80%) #467fa3CC  
rgb(70, 127, 163, 100%) #467fa3FF  

Saturated and desaturated colors of #467fa3

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

#467fa3 Color Usage In CSS

 body {
    color: #467fa3;
    }
 p {
    color: rgb(70, 127, 163);
    }
 header {
    border-bottom:1px solid #467fa3;
    }
Recent Random Colors