#38589d Color
Color Codes | |
---|---|
Hex Code | #38589d |
RGB Code | rgb(56, 88, 157) |
HSL Code | hsl(221, 47%, 42%) |
#38589d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 88, 157); }
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(221, 47%, 42%); }
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 #38589d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 88, 157, 10%) | #38589d1a | |
rgb(56, 88, 157, 20%) | #38589d33 | |
rgb(56, 88, 157, 40%) | #38589d4C | |
rgb(56, 88, 157, 60%) | #38589d99 | |
rgb(56, 88, 157, 80%) | #38589dCC | |
rgb(56, 88, 157, 100%) | #38589dFF |
Saturated and desaturated colors of #38589d
HSL Code | Preview |
---|---|
hsl(221, 10%, 42%) | |
hsl(221, 20%, 42%) | |
hsl(221, 40%, 42%) | |
hsl(221, 60%, 42%) | |
hsl(221, 80%, 42%) | |
hsl(221, 100%, 42%) |
#38589d Color Usage In CSS
body { color: #38589d; } p { color: rgb(56, 88, 157); } header { border-bottom:1px solid #38589d; }