Random Color Generator

#023dbc Color

Color Codes
Hex Code #023dbc
RGB Code rgb(02, 61, 188)
HSL Code hsl(221, 98%, 37%)

#023dbc Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 61, 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(221, 98%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(02, 61, 188, 10%) #023dbc1a  
rgb(02, 61, 188, 20%) #023dbc33  
rgb(02, 61, 188, 40%) #023dbc4C  
rgb(02, 61, 188, 60%) #023dbc99  
rgb(02, 61, 188, 80%) #023dbcCC  
rgb(02, 61, 188, 100%) #023dbcFF  

Saturated and desaturated colors of #023dbc

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

#023dbc Color Usage In CSS

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