#598dac Color
Color Codes | |
---|---|
Hex Code | #598dac |
RGB Code | rgb(89, 141, 172) |
HSL Code | hsl(202, 33%, 51%) |
#598dac Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(89, 141, 172); }
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(202, 33%, 51%); }
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 #598dac
RGB Code | Hex Code | Preview |
---|---|---|
rgb(89, 141, 172, 10%) | #598dac1a | |
rgb(89, 141, 172, 20%) | #598dac33 | |
rgb(89, 141, 172, 40%) | #598dac4C | |
rgb(89, 141, 172, 60%) | #598dac99 | |
rgb(89, 141, 172, 80%) | #598dacCC | |
rgb(89, 141, 172, 100%) | #598dacFF |
Saturated and desaturated colors of #598dac
HSL Code | Preview |
---|---|
hsl(202, 10%, 51%) | |
hsl(202, 20%, 51%) | |
hsl(202, 40%, 51%) | |
hsl(202, 60%, 51%) | |
hsl(202, 80%, 51%) | |
hsl(202, 100%, 51%) |
#598dac Color Usage In CSS
body { color: #598dac; } p { color: rgb(89, 141, 172); } header { border-bottom:1px solid #598dac; }