Random Color Generator

#485dda Color

Color Codes
Hex Code #485dda
RGB Code rgb(72, 93, 218)
HSL Code hsl(231, 66%, 57%)

#485dda Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 93, 218);
   }

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(231, 66%, 57%);
  }

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 #485dda

RGB Code Hex Code Preview
rgb(72, 93, 218, 10%) #485dda1a  
rgb(72, 93, 218, 20%) #485dda33  
rgb(72, 93, 218, 40%) #485dda4C  
rgb(72, 93, 218, 60%) #485dda99  
rgb(72, 93, 218, 80%) #485ddaCC  
rgb(72, 93, 218, 100%) #485ddaFF  

Saturated and desaturated colors of #485dda

HSL Code Preview
hsl(231, 10%, 57%)  
hsl(231, 20%, 57%)  
hsl(231, 40%, 57%)  
hsl(231, 60%, 57%)  
hsl(231, 80%, 57%)  
hsl(231, 100%, 57%)  

#485dda Color Usage In CSS

 body {
    color: #485dda;
    }
 p {
    color: rgb(72, 93, 218);
    }
 header {
    border-bottom:1px solid #485dda;
    }
Recent Random Colors