Yes, there are four types of @media properties (including screen):
Here is an example of print media type's usage:
@media print { body { color: black; } }
By Code 100mph