#54ffb4 Color
Color Codes | |
---|---|
Hex Code | #54ffb4 |
RGB Code | rgb(84, 255, 180) |
HSL Code | hsl(154, 100%, 66%) |
#54ffb4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(84, 255, 180); }
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(154, 100%, 66%); }
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 #54ffb4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(84, 255, 180, 10%) | #54ffb41a | |
rgb(84, 255, 180, 20%) | #54ffb433 | |
rgb(84, 255, 180, 40%) | #54ffb44C | |
rgb(84, 255, 180, 60%) | #54ffb499 | |
rgb(84, 255, 180, 80%) | #54ffb4CC | |
rgb(84, 255, 180, 100%) | #54ffb4FF |
Saturated and desaturated colors of #54ffb4
HSL Code | Preview |
---|---|
hsl(154, 10%, 66%) | |
hsl(154, 20%, 66%) | |
hsl(154, 40%, 66%) | |
hsl(154, 60%, 66%) | |
hsl(154, 80%, 66%) | |
hsl(154, 100%, 66%) |
#54ffb4 Color Usage In CSS
body { color: #54ffb4; } p { color: rgb(84, 255, 180); } header { border-bottom:1px solid #54ffb4; }