#0a5754 Color
Color Codes | |
---|---|
Hex Code | #0a5754 |
RGB Code | rgb(10, 87, 84) |
HSL Code | hsl(178, 79%, 19%) |
#0a5754 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(10, 87, 84); }
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(178, 79%, 19%); }
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 #0a5754
RGB Code | Hex Code | Preview |
---|---|---|
rgb(10, 87, 84, 10%) | #0a57541a | |
rgb(10, 87, 84, 20%) | #0a575433 | |
rgb(10, 87, 84, 40%) | #0a57544C | |
rgb(10, 87, 84, 60%) | #0a575499 | |
rgb(10, 87, 84, 80%) | #0a5754CC | |
rgb(10, 87, 84, 100%) | #0a5754FF |
Saturated and desaturated colors of #0a5754
HSL Code | Preview |
---|---|
hsl(178, 10%, 19%) | |
hsl(178, 20%, 19%) | |
hsl(178, 40%, 19%) | |
hsl(178, 60%, 19%) | |
hsl(178, 80%, 19%) | |
hsl(178, 100%, 19%) |
#0a5754 Color Usage In CSS
body { color: #0a5754; } p { color: rgb(10, 87, 84); } header { border-bottom:1px solid #0a5754; }