#3893a7 Color
Color Codes | |
---|---|
Hex Code | #3893a7 |
RGB Code | rgb(56, 147, 167) |
HSL Code | hsl(191, 50%, 44%) |
#3893a7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 147, 167); }
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(191, 50%, 44%); }
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 #3893a7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 147, 167, 10%) | #3893a71a | |
rgb(56, 147, 167, 20%) | #3893a733 | |
rgb(56, 147, 167, 40%) | #3893a74C | |
rgb(56, 147, 167, 60%) | #3893a799 | |
rgb(56, 147, 167, 80%) | #3893a7CC | |
rgb(56, 147, 167, 100%) | #3893a7FF |
Saturated and desaturated colors of #3893a7
HSL Code | Preview |
---|---|
hsl(191, 10%, 44%) | |
hsl(191, 20%, 44%) | |
hsl(191, 40%, 44%) | |
hsl(191, 60%, 44%) | |
hsl(191, 80%, 44%) | |
hsl(191, 100%, 44%) |
#3893a7 Color Usage In CSS
body { color: #3893a7; } p { color: rgb(56, 147, 167); } header { border-bottom:1px solid #3893a7; }