Random Color Generator

#38b9ed Color

Color Codes
Hex Code #38b9ed
RGB Code rgb(56, 185, 237)
HSL Code hsl(197, 83%, 57%)

#38b9ed Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 185, 237);
   }

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(197, 83%, 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 #38b9ed

RGB Code Hex Code Preview
rgb(56, 185, 237, 10%) #38b9ed1a  
rgb(56, 185, 237, 20%) #38b9ed33  
rgb(56, 185, 237, 40%) #38b9ed4C  
rgb(56, 185, 237, 60%) #38b9ed99  
rgb(56, 185, 237, 80%) #38b9edCC  
rgb(56, 185, 237, 100%) #38b9edFF  

Saturated and desaturated colors of #38b9ed

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

#38b9ed Color Usage In CSS

 body {
    color: #38b9ed;
    }
 p {
    color: rgb(56, 185, 237);
    }
 header {
    border-bottom:1px solid #38b9ed;
    }
Recent Random Colors