Random Color Generator

#585dbc Color

Color Codes
Hex Code #585dbc
RGB Code rgb(88, 93, 188)
HSL Code hsl(237, 43%, 54%)

#585dbc Color Syntax

rgb()

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

 main {
    background-color: rgb(88, 93, 188);
   }

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(237, 43%, 54%);
  }

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 #585dbc

RGB Code Hex Code Preview
rgb(88, 93, 188, 10%) #585dbc1a  
rgb(88, 93, 188, 20%) #585dbc33  
rgb(88, 93, 188, 40%) #585dbc4C  
rgb(88, 93, 188, 60%) #585dbc99  
rgb(88, 93, 188, 80%) #585dbcCC  
rgb(88, 93, 188, 100%) #585dbcFF  

Saturated and desaturated colors of #585dbc

HSL Code Preview
hsl(237, 10%, 54%)  
hsl(237, 20%, 54%)  
hsl(237, 40%, 54%)  
hsl(237, 60%, 54%)  
hsl(237, 80%, 54%)  
hsl(237, 100%, 54%)  

#585dbc Color Usage In CSS

 body {
    color: #585dbc;
    }
 p {
    color: rgb(88, 93, 188);
    }
 header {
    border-bottom:1px solid #585dbc;
    }
Recent Random Colors