Random Color Generator

#469ae4 Color

Color Codes
Hex Code #469ae4
RGB Code rgb(70, 154, 228)
HSL Code hsl(208, 75%, 58%)

#469ae4 Color Syntax

rgb()

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

 main {
    background-color: rgb(70, 154, 228);
   }

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(208, 75%, 58%);
  }

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 #469ae4

RGB Code Hex Code Preview
rgb(70, 154, 228, 10%) #469ae41a  
rgb(70, 154, 228, 20%) #469ae433  
rgb(70, 154, 228, 40%) #469ae44C  
rgb(70, 154, 228, 60%) #469ae499  
rgb(70, 154, 228, 80%) #469ae4CC  
rgb(70, 154, 228, 100%) #469ae4FF  

Saturated and desaturated colors of #469ae4

HSL Code Preview
hsl(208, 10%, 58%)  
hsl(208, 20%, 58%)  
hsl(208, 40%, 58%)  
hsl(208, 60%, 58%)  
hsl(208, 80%, 58%)  
hsl(208, 100%, 58%)  

#469ae4 Color Usage In CSS

 body {
    color: #469ae4;
    }
 p {
    color: rgb(70, 154, 228);
    }
 header {
    border-bottom:1px solid #469ae4;
    }
Recent Random Colors