Random Color Generator

#02385f Color

Color Codes
Hex Code #02385f
RGB Code rgb(02, 56, 95)
HSL Code hsl(205, 96%, 19%)

#02385f Color Syntax

rgb()

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

 main {
    background-color: rgb(02, 56, 95);
   }

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(205, 96%, 19%);
  }

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 #02385f

RGB Code Hex Code Preview
rgb(02, 56, 95, 10%) #02385f1a  
rgb(02, 56, 95, 20%) #02385f33  
rgb(02, 56, 95, 40%) #02385f4C  
rgb(02, 56, 95, 60%) #02385f99  
rgb(02, 56, 95, 80%) #02385fCC  
rgb(02, 56, 95, 100%) #02385fFF  

Saturated and desaturated colors of #02385f

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

#02385f Color Usage In CSS

 body {
    color: #02385f;
    }
 p {
    color: rgb(02, 56, 95);
    }
 header {
    border-bottom:1px solid #02385f;
    }
Recent Random Colors