#83f0b0 Color
Color Codes | |
---|---|
Hex Code | #83f0b0 |
RGB Code | rgb(131, 240, 176) |
HSL Code | hsl(145, 78%, 73%) |
#83f0b0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(131, 240, 176); }
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(145, 78%, 73%); }
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 #83f0b0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(131, 240, 176, 10%) | #83f0b01a | |
rgb(131, 240, 176, 20%) | #83f0b033 | |
rgb(131, 240, 176, 40%) | #83f0b04C | |
rgb(131, 240, 176, 60%) | #83f0b099 | |
rgb(131, 240, 176, 80%) | #83f0b0CC | |
rgb(131, 240, 176, 100%) | #83f0b0FF |
Saturated and desaturated colors of #83f0b0
HSL Code | Preview |
---|---|
hsl(145, 10%, 73%) | |
hsl(145, 20%, 73%) | |
hsl(145, 40%, 73%) | |
hsl(145, 60%, 73%) | |
hsl(145, 80%, 73%) | |
hsl(145, 100%, 73%) |
#83f0b0 Color Usage In CSS
body { color: #83f0b0; } p { color: rgb(131, 240, 176); } header { border-bottom:1px solid #83f0b0; }