#056263 Color
Color Codes | |
---|---|
Hex Code | #056263 |
RGB Code | rgb(05, 98, 99) |
HSL Code | hsl(181, 90%, 20%) |
#056263 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 98, 99); }
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(181, 90%, 20%); }
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 #056263
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 98, 99, 10%) | #0562631a | |
rgb(05, 98, 99, 20%) | #05626333 | |
rgb(05, 98, 99, 40%) | #0562634C | |
rgb(05, 98, 99, 60%) | #05626399 | |
rgb(05, 98, 99, 80%) | #056263CC | |
rgb(05, 98, 99, 100%) | #056263FF |
Saturated and desaturated colors of #056263
HSL Code | Preview |
---|---|
hsl(181, 10%, 20%) | |
hsl(181, 20%, 20%) | |
hsl(181, 40%, 20%) | |
hsl(181, 60%, 20%) | |
hsl(181, 80%, 20%) | |
hsl(181, 100%, 20%) |
#056263 Color Usage In CSS
body { color: #056263; } p { color: rgb(05, 98, 99); } header { border-bottom:1px solid #056263; }