#48e8c7 Color
Color Codes | |
---|---|
Hex Code | #48e8c7 |
RGB Code | rgb(72, 232, 199) |
HSL Code | hsl(168, 78%, 60%) |
#48e8c7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 232, 199); }
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(168, 78%, 60%); }
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 #48e8c7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 232, 199, 10%) | #48e8c71a | |
rgb(72, 232, 199, 20%) | #48e8c733 | |
rgb(72, 232, 199, 40%) | #48e8c74C | |
rgb(72, 232, 199, 60%) | #48e8c799 | |
rgb(72, 232, 199, 80%) | #48e8c7CC | |
rgb(72, 232, 199, 100%) | #48e8c7FF |
Saturated and desaturated colors of #48e8c7
HSL Code | Preview |
---|---|
hsl(168, 10%, 60%) | |
hsl(168, 20%, 60%) | |
hsl(168, 40%, 60%) | |
hsl(168, 60%, 60%) | |
hsl(168, 80%, 60%) | |
hsl(168, 100%, 60%) |
#48e8c7 Color Usage In CSS
body { color: #48e8c7; } p { color: rgb(72, 232, 199); } header { border-bottom:1px solid #48e8c7; }