#0593ba Color
Color Codes | |
---|---|
Hex Code | #0593ba |
RGB Code | rgb(05, 147, 186) |
HSL Code | hsl(193, 95%, 37%) |
#0593ba Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 147, 186); }
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(193, 95%, 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 #0593ba
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 147, 186, 10%) | #0593ba1a | |
rgb(05, 147, 186, 20%) | #0593ba33 | |
rgb(05, 147, 186, 40%) | #0593ba4C | |
rgb(05, 147, 186, 60%) | #0593ba99 | |
rgb(05, 147, 186, 80%) | #0593baCC | |
rgb(05, 147, 186, 100%) | #0593baFF |
Saturated and desaturated colors of #0593ba
HSL Code | Preview |
---|---|
hsl(193, 10%, 37%) | |
hsl(193, 20%, 37%) | |
hsl(193, 40%, 37%) | |
hsl(193, 60%, 37%) | |
hsl(193, 80%, 37%) | |
hsl(193, 100%, 37%) |
#0593ba Color Usage In CSS
body { color: #0593ba; } p { color: rgb(05, 147, 186); } header { border-bottom:1px solid #0593ba; }