#184089 Color
Color Codes | |
---|---|
Hex Code | #184089 |
RGB Code | rgb(24, 64, 137) |
HSL Code | hsl(219, 70%, 32%) |
#184089 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(24, 64, 137); }
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(219, 70%, 32%); }
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 #184089
RGB Code | Hex Code | Preview |
---|---|---|
rgb(24, 64, 137, 10%) | #1840891a | |
rgb(24, 64, 137, 20%) | #18408933 | |
rgb(24, 64, 137, 40%) | #1840894C | |
rgb(24, 64, 137, 60%) | #18408999 | |
rgb(24, 64, 137, 80%) | #184089CC | |
rgb(24, 64, 137, 100%) | #184089FF |
Saturated and desaturated colors of #184089
HSL Code | Preview |
---|---|
hsl(219, 10%, 32%) | |
hsl(219, 20%, 32%) | |
hsl(219, 40%, 32%) | |
hsl(219, 60%, 32%) | |
hsl(219, 80%, 32%) | |
hsl(219, 100%, 32%) |
#184089 Color Usage In CSS
body { color: #184089; } p { color: rgb(24, 64, 137); } header { border-bottom:1px solid #184089; }