Random Color Generator

#385093 Color

Color Codes
Hex Code #385093
RGB Code rgb(56, 80, 147)
HSL Code hsl(224, 45%, 40%)

#385093 Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 80, 147);
   }

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(224, 45%, 40%);
  }

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 #385093

RGB Code Hex Code Preview
rgb(56, 80, 147, 10%) #3850931a  
rgb(56, 80, 147, 20%) #38509333  
rgb(56, 80, 147, 40%) #3850934C  
rgb(56, 80, 147, 60%) #38509399  
rgb(56, 80, 147, 80%) #385093CC  
rgb(56, 80, 147, 100%) #385093FF  

Saturated and desaturated colors of #385093

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

#385093 Color Usage In CSS

 body {
    color: #385093;
    }
 p {
    color: rgb(56, 80, 147);
    }
 header {
    border-bottom:1px solid #385093;
    }
Recent Random Colors