#754750 Color
Color Codes | |
---|---|
Hex Code | #754750 |
RGB Code | rgb(117, 71, 80) |
HSL Code | hsl(348, 24%, 37%) |
#754750 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(117, 71, 80); }
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(348, 24%, 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 #754750
RGB Code | Hex Code | Preview |
---|---|---|
rgb(117, 71, 80, 10%) | #7547501a | |
rgb(117, 71, 80, 20%) | #75475033 | |
rgb(117, 71, 80, 40%) | #7547504C | |
rgb(117, 71, 80, 60%) | #75475099 | |
rgb(117, 71, 80, 80%) | #754750CC | |
rgb(117, 71, 80, 100%) | #754750FF |
Saturated and desaturated colors of #754750
HSL Code | Preview |
---|---|
hsl(348, 10%, 37%) | |
hsl(348, 20%, 37%) | |
hsl(348, 40%, 37%) | |
hsl(348, 60%, 37%) | |
hsl(348, 80%, 37%) | |
hsl(348, 100%, 37%) |
#754750 Color Usage In CSS
body { color: #754750; } p { color: rgb(117, 71, 80); } header { border-bottom:1px solid #754750; }